mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-25 23:14:18 +03:00
OATH: Don't show creds with issuer: "_hidden".
This commit is contained in:
parent
1a2b43a87d
commit
6be8fb0e9a
@ -169,6 +169,7 @@ class FilteredCredentialsNotifier extends StateNotifier<List<OathPair>> {
|
||||
"${pair.credential.issuer ?? ''}:${pair.credential.name}"
|
||||
.toLowerCase()
|
||||
.contains(query.toLowerCase()))
|
||||
.where((pair) => pair.credential.issuer != '_hidden')
|
||||
.toList()
|
||||
..sort((a, b) {
|
||||
String searchKey(OathCredential c) => (c.issuer ?? '') + c.name;
|
||||
|
Loading…
Reference in New Issue
Block a user