1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-06 00:13:28 +00:00

Merge branch 'main' into PM-26250-Explore-options-to-enable-direct-importer-for-mac-app-store-build

This commit is contained in:
John Harrington
2025-12-04 15:42:41 -07:00
committed by GitHub
2 changed files with 35 additions and 19 deletions

View File

@@ -335,8 +335,10 @@ export class SearchService implements SearchServiceAbstraction {
if (
login &&
login.uris.length &&
login.uris.some((loginUri) => loginUri?.uri?.toLowerCase().indexOf(query) > -1)
login.uris?.length &&
login.uris?.some(
(loginUri) => loginUri?.uri && loginUri.uri.toLowerCase().indexOf(query) > -1,
)
) {
return true;
}