Skip to content

Commit

Permalink
feat: Fix variable name in freenet_api.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
sanity committed Dec 25, 2024
1 parent 3109c7d commit 59e9f95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/components/app/freenet_api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ impl FreenetApiSynchronizer {
key: room.contract_key,
data: freenet_stdlib::prelude::UpdateData::State(state_bytes.into()),
};
let mut sender = request_sender_clone.clone();
let mut sender = request_sender.clone();
wasm_bindgen_futures::spawn_local(async move {
if let Err(e) = sender.send(update_request.into()).await {
log::error!("Failed to send room update: {}", e);
Expand Down

0 comments on commit 59e9f95

Please sign in to comment.