build: Update matrix sdk and dependencies

This commit is contained in:
Krille 2024-12-17 15:15:39 +01:00
commit c30e6c4aa2
No known key found for this signature in database
GPG key ID: E067ECD60F1A0652
5 changed files with 16 additions and 6 deletions

View file

@ -70,7 +70,9 @@ extension InitWithRestoreExtension on Client {
try {
await init(
onMigration: onMigration,
onInitStateChanged: (state) {
if (state == InitState.migratingDatabase) onMigration?.call();
},
waitForFirstSync: false,
waitUntilLoadCompletedLoaded: false,
);
@ -122,7 +124,9 @@ extension InitWithRestoreExtension on Client {
newUserID: sessionBackup.userId,
waitForFirstSync: false,
waitUntilLoadCompletedLoaded: false,
onMigration: onMigration,
onInitStateChanged: (state) {
if (state == InitState.migratingDatabase) onMigration?.call();
},
);
ClientManager.sendInitNotification(
l10n.initAppError,

View file

@ -195,4 +195,10 @@ class VoipPlugin with WidgetsBindingObserver implements WebRTCDelegate {
@override
// TODO: implement keyProvider
EncryptionKeyProvider? get keyProvider => throw UnimplementedError();
@override
Future<void> registerListeners(CallSession session) {
// TODO: implement registerListeners
throw UnimplementedError();
}
}