Skip to content

Commit

Permalink
fixup! recovery: Ensure that we don't miss updates to the backup state
Browse files Browse the repository at this point in the history
  • Loading branch information
poljar committed Jun 28, 2024
1 parent 932ff17 commit 5ec246b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/matrix-sdk/src/encryption/recovery/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ impl Recovery {
client: &Client,
) -> impl Future<Output = ()> {
let mut stream = client.encryption().backups().state_stream();
let weak = WeakClient::from_client(&client);
let weak = WeakClient::from_client(client);

async move {
while let Some(update) = stream.next().await {
Expand Down

0 comments on commit 5ec246b

Please sign in to comment.