From f46d396e12e880825cfbd10db471db4f4cae5b34 Mon Sep 17 00:00:00 2001 From: cloudhead Date: Wed, 7 Feb 2024 14:56:26 +0100 Subject: [PATCH] clippy: Fix lint --- radicle-node/src/worker/fetch.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radicle-node/src/worker/fetch.rs b/radicle-node/src/worker/fetch.rs index 9b79a18b..83212afb 100644 --- a/radicle-node/src/worker/fetch.rs +++ b/radicle-node/src/worker/fetch.rs @@ -180,7 +180,7 @@ fn notify( } if let RefUpdate::Skipped { .. } = update { // Don't notify about skipped refs. - } else if let Err(e) = store.insert(&rid, update, now) { + } else if let Err(e) = store.insert(rid, update, now) { log::error!( target: "worker", "Failed to update notification store for {rid}: {e}"