Skip to content

Commit

Permalink
bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
appaquet committed Oct 11, 2023
1 parent be8216c commit 701dfe5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion clients/web/src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ impl ExocoreClient {
.store_handle
.store_node()
.map(|node| node.http_addresses())
.unwrap_or_else(Vec::new)
.unwrap_or_default()
.into_iter()
.map(|url| JsValue::from(url.to_string()));

Expand Down
2 changes: 1 addition & 1 deletion store/src/local/mutation_tracker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ impl MutationTracker {
let entry = inner
.operations_requests
.entry(operation_id)
.or_insert_with(HashSet::new);
.or_default();
entry.insert(request_id);
}
}
Expand Down

0 comments on commit 701dfe5

Please sign in to comment.