mirror of
https://github.com/Kunzisoft/KeePassDX.git
synced 2025-12-04 15:49:33 +01:00
Fix UUID search
This commit is contained in:
@@ -182,10 +182,8 @@ class SearchHelper {
|
||||
return true
|
||||
}
|
||||
if (searchParameters.searchInUUIDs) {
|
||||
val hexString = UuidUtil.toHexString(entry.nodeId.id)
|
||||
if (hexString != null
|
||||
&& hexString.contains(searchQuery, true)
|
||||
)
|
||||
val hexString = UuidUtil.toHexString(entry.nodeId.id) ?: ""
|
||||
if (checkSearchQuery(hexString, searchParameters))
|
||||
return true
|
||||
}
|
||||
if (searchParameters.searchInOther) {
|
||||
|
||||
Reference in New Issue
Block a user