chore: remove redundant log message

This commit is contained in:
Nicolas Werner 2023-09-19 12:24:06 +02:00
parent c0c95b1d64
commit bf51e57e78
No known key found for this signature in database
1 changed files with 4 additions and 6 deletions

View File

@ -584,12 +584,10 @@ class Bootstrap {
Logs().v('Wait for secret to come down sync');
if (!await encryption.keyManager.isCached()) {
await client.onSync.stream
.firstWhere((syncUpdate) =>
await client.onSync.stream.firstWhere((syncUpdate) =>
syncUpdate.accountData != null &&
syncUpdate.accountData!
.any((accountData) => accountData.type == megolmKey))
.then((_) => Logs().v('New backup key was created'));
.any((accountData) => accountData.type == megolmKey));
}
Logs().v(