From b9b7fd85da402ab93899a5c44c32ed0ff4050190 Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Mon, 12 Jan 2026 09:16:04 -0600 Subject: [PATCH] mergerfs_webui.cpp --- src/mergerfs_webui.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/mergerfs_webui.cpp b/src/mergerfs_webui.cpp index b6ffe8d4..d8f14d76 100644 --- a/src/mergerfs_webui.cpp +++ b/src/mergerfs_webui.cpp @@ -209,6 +209,8 @@ window.onload = () => { loadMounts(); }; // If Equal Return True #define IERT(S) if(type_ == (S)) return true; +// If Equal Return False +#define IERF(S) if(type_ == (S)) return false; static bool @@ -226,7 +228,6 @@ _valid_fs_type(const std::string &type_) IERT("ntfs"); IERT("vfat"); IERT("exfat"); - IERT("fuse.kio-fuse"); if(str::startswith(type_,"fuse.")) return true;