From 6f2b642d59964760990807a9577f6e7e24482846 Mon Sep 17 00:00:00 2001 From: zhaoyang Date: Thu, 11 Jun 2026 21:31:35 +0800 Subject: [PATCH] fix: use encoded bytes for Tuple hashing --- yazi-actor/src/mgr/bulk_rename.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yazi-actor/src/mgr/bulk_rename.rs b/yazi-actor/src/mgr/bulk_rename.rs index ed826687..6c32695a 100644 --- a/yazi-actor/src/mgr/bulk_rename.rs +++ b/yazi-actor/src/mgr/bulk_rename.rs @@ -386,7 +386,7 @@ impl Eq for Tuple {} impl Hash for Tuple { fn hash(&self, state: &mut H) { - self.1.hash(state); + self.1.as_strand().encoded_bytes().hash(state); } }