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]