Skip to content

Commit 7e38f77

Browse files
fix(indexing): avoid redundant branch memo borrow
1 parent 10051ab commit 7e38f77

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/tracedecay/indexing.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1229,7 +1229,7 @@ impl TraceDecay {
12291229
// HEAD is unchanged, re-stamping the same commit is idempotent; if a
12301230
// hook-driven edit accompanied a commit, this keeps the base accurate.
12311231
self.stamp_last_synced_commit().await;
1232-
self.touch_branch_meta_synced(&live_branch);
1232+
self.touch_branch_meta_synced(live_branch);
12331233
self.db
12341234
.set_metadata(
12351235
"last_sync_duration_ms",

0 commit comments

Comments
 (0)