Skip to content

Commit

Permalink
fix: Fix a rebasing issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
Hywan committed Jan 18, 2024
1 parent 61ece69 commit 7793920
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/machine.rs
Original file line number Diff line number Diff line change
Expand Up @@ -994,7 +994,8 @@ impl OlmMachine {
let mut failures = 0;
for backed_up_room_keys_entry in backed_up_room_keys.entries() {
let backed_up_room_keys_entry: Array = backed_up_room_keys_entry?.dyn_into()?;
let room_id = identifiers::RoomId::try_from_js_value(backed_up_room_keys_entry.get(0))?;
let room_id =
identifiers::RoomId::try_from_js_value(backed_up_room_keys_entry.get(0))?.inner;

let room_room_keys: Map = backed_up_room_keys_entry.get(1).dyn_into()?;

Expand Down

0 comments on commit 7793920

Please sign in to comment.