From d4924ebcad7125e2e7fc654ba017bd698d44af9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=89=E5=92=B2=E9=9B=85=20misaki=20masa?= Date: Sun, 22 Mar 2026 06:36:34 +0800 Subject: [PATCH] fix: treat `nfs4` mounts as soundless for directory refresh (#3800) --- yazi-fs/src/mounts/partition.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yazi-fs/src/mounts/partition.rs b/yazi-fs/src/mounts/partition.rs index ccbab9da..d4df4844 100644 --- a/yazi-fs/src/mounts/partition.rs +++ b/yazi-fs/src/mounts/partition.rs @@ -25,7 +25,7 @@ impl Partition { // and should be polled for changes. pub fn soundless(&self) -> bool { let b: &[u8] = self.fstype.as_ref().map_or(b"", |s| s.as_encoded_bytes()); - matches!(b, b"fuse.rclone") + matches!(b, b"fuse.rclone" | b"nfs4") } #[rustfmt::skip]