Skip to content

Commit

Permalink
fixup! timeline: Retry decryption if a room key backup gets enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
poljar committed Sep 9, 2024
1 parent 655433e commit b4886ae
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion crates/matrix-sdk-ui/src/timeline/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,14 @@ impl TimelineBuilder {
}
// The other states aren't interesting since they are either still enabling
// the backup or have the backup in the disabled state.
_ => (),
Ok(
BackupState::Unknown
| BackupState::Creating
| BackupState::Resuming
| BackupState::Disabling
| BackupState::Downloading
| BackupState::Enabling,
) => (),
}
}
})
Expand Down

0 comments on commit b4886ae

Please sign in to comment.