fix: Correctly search for duplicates in Identities
This commit is contained in:
parent
ce59bcd3c3
commit
2f1d88a476
|
@ -301,7 +301,7 @@ class CipherDuplicatesCheckImpl(
|
||||||
if (
|
if (
|
||||||
a.processed.identity != null &&
|
a.processed.identity != null &&
|
||||||
b.processed.identity != null &&
|
b.processed.identity != null &&
|
||||||
a.processed.type == DSecret.Type.Card
|
a.processed.type == DSecret.Type.Identity
|
||||||
) {
|
) {
|
||||||
val aIdentity = a.processed.identity
|
val aIdentity = a.processed.identity
|
||||||
val bIdentity = b.processed.identity
|
val bIdentity = b.processed.identity
|
||||||
|
|
Loading…
Reference in New Issue