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