diff --git a/src/mergerfs_webui.cpp b/src/mergerfs_webui.cpp index 542fc7de..6887da73 100644 --- a/src/mergerfs_webui.cpp +++ b/src/mergerfs_webui.cpp @@ -198,7 +198,8 @@ _get_mounts(const httplib::Request &req_, { json obj; - if(mount.type == "ext2") + if(::_valid_fs_type(mount.type)) + continue; obj["path"] = mount.dir; obj["type"] = mount.type;