Merge branch 'soru/fix-incorrect-olm-session-create' into 'master'
Fix some olm sessions not being loaded from database See merge request famedly/famedlysdk!356
This commit is contained in:
commit
ed262c0d51
|
@ -400,6 +400,18 @@ class OlmManager {
|
||||||
String type,
|
String type,
|
||||||
Map<String, dynamic> payload) async {
|
Map<String, dynamic> payload) async {
|
||||||
var data = <String, Map<String, Map<String, dynamic>>>{};
|
var data = <String, Map<String, Map<String, dynamic>>>{};
|
||||||
|
// first check if any of our sessions we want to encrypt for are in the database
|
||||||
|
if (client.database != null) {
|
||||||
|
for (final device in deviceKeys) {
|
||||||
|
if (!olmSessions.containsKey(device.curve25519Key)) {
|
||||||
|
final sessions = await client.database.getSingleOlmSessions(
|
||||||
|
client.id, device.curve25519Key, client.userID);
|
||||||
|
if (sessions.isNotEmpty) {
|
||||||
|
_olmSessions[device.curve25519Key] = sessions;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
final deviceKeysWithoutSession = List<DeviceKeys>.from(deviceKeys);
|
final deviceKeysWithoutSession = List<DeviceKeys>.from(deviceKeys);
|
||||||
deviceKeysWithoutSession.removeWhere((DeviceKeys deviceKeys) =>
|
deviceKeysWithoutSession.removeWhere((DeviceKeys deviceKeys) =>
|
||||||
olmSessions.containsKey(deviceKeys.curve25519Key));
|
olmSessions.containsKey(deviceKeys.curve25519Key));
|
||||||
|
|
Loading…
Reference in a new issue