diff --git a/src/mergerfs_webui.cpp b/src/mergerfs_webui.cpp index 810dd85a..70d43bfb 100644 --- a/src/mergerfs_webui.cpp +++ b/src/mergerfs_webui.cpp @@ -170,6 +170,8 @@ _get_mounts(const httplib::Request &req_, j = json::array(); for(const auto &mount : mounts) { + if((not type.empty()) and (mount.type != type)) + continue; // if(mount.type != "fuse.mergerfs") // continue; j.push_back(mount.dir);