Skip to content

Commit

Permalink
chore: fix check err
Browse files Browse the repository at this point in the history
  • Loading branch information
zxch3n committed Dec 30, 2024
1 parent 6c4f91b commit 230083e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/loro-internal/src/state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1596,7 +1596,7 @@ impl DocState {
.register_container(&node.associated_meta_container());
let map = self.store.get_container(idx)?;
let Some(LoroValue::Container(c)) =
map.as_map_state().unwrap().get(&internal_string)
map.as_map_state().unwrap().get(internal_string)
else {
return None;
};
Expand Down

0 comments on commit 230083e

Please sign in to comment.