Skip to content

Commit

Permalink
feat: Fix key bytes and update data handling in freenet_api
Browse files Browse the repository at this point in the history
  • Loading branch information
sanity committed Dec 23, 2024
1 parent 8637335 commit 86d881e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/src/components/app/freenet_api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,8 @@ impl FreenetApiSynchronizer {
// Handle incremental updates
let mut rooms = use_context::<Signal<Rooms>>();
let mut rooms = rooms.write();
if let Some(room_data) = rooms.map.get_mut(&VerifyingKey::from_bytes(key.id().as_ref()).expect("Invalid key bytes")) {
if let Ok(delta) = ciborium::from_reader(update.as_ref()) {
if let Some(room_data) = rooms.map.get_mut(&VerifyingKey::from_bytes(&key.id().to_bytes()).expect("Invalid key bytes")) {
if let Ok(delta) = ciborium::from_reader(&update[..]) {
if let Err(e) = room_data.room_state.apply_delta(
&room_data.room_state,
&room_data.parameters(),
Expand Down

0 comments on commit 86d881e

Please sign in to comment.