[Client] Fix claim keys not in loop
This commit is contained in:
parent
f40322b8d0
commit
237bd40a15
|
@ -1729,12 +1729,6 @@ class Client {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
for (int i = 0; i < deviceKeys.length; i++) {
|
|
||||||
DeviceKeys device = deviceKeys[i];
|
|
||||||
if (!data["messages"].containsKey(device.userId)) {
|
|
||||||
data["messages"][device.userId] = Map<String, dynamic>();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (encrypted) {
|
if (encrypted) {
|
||||||
// Create new sessions with devices if there is no existing session yet.
|
// Create new sessions with devices if there is no existing session yet.
|
||||||
List<DeviceKeys> deviceKeysWithoutSession =
|
List<DeviceKeys> deviceKeysWithoutSession =
|
||||||
|
@ -1744,6 +1738,14 @@ class Client {
|
||||||
if (deviceKeysWithoutSession.isNotEmpty) {
|
if (deviceKeysWithoutSession.isNotEmpty) {
|
||||||
await startOutgoingOlmSessions(deviceKeysWithoutSession);
|
await startOutgoingOlmSessions(deviceKeysWithoutSession);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
for (int i = 0; i < deviceKeys.length; i++) {
|
||||||
|
DeviceKeys device = deviceKeys[i];
|
||||||
|
if (!data["messages"].containsKey(device.userId)) {
|
||||||
|
data["messages"][device.userId] = Map<String, dynamic>();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (encrypted) {
|
||||||
List<olm.Session> existingSessions =
|
List<olm.Session> existingSessions =
|
||||||
olmSessions[device.curve25519Key];
|
olmSessions[device.curve25519Key];
|
||||||
if (existingSessions == null || existingSessions.isEmpty) continue;
|
if (existingSessions == null || existingSessions.isEmpty) continue;
|
||||||
|
|
Loading…
Reference in a new issue