clippy: Fix lint

This commit is contained in:
cloudhead 2024-02-07 14:56:26 +01:00
parent d901b911c6
commit f46d396e12
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -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}"