fix: Remove unnecessary null check
This commit is contained in:
parent
7d5652e9a3
commit
7a85d52d93
|
|
@ -741,7 +741,7 @@ class KeyManager {
|
|||
client.getUserDeviceKeysByCurve25519Key(dbSession.senderKey);
|
||||
args.dbSessions.add(_DbInboundGroupSessionBundle(
|
||||
dbSession: dbSession,
|
||||
verified: device?.verified ?? false,
|
||||
verified: device.verified ?? false,
|
||||
));
|
||||
i++;
|
||||
if (i > 10) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue