Browse Source

mergerfs_webui.cpp

webui
Antonio SJ Musumeci 1 week ago
parent
commit
a4c8896d3d
  1. 2
      src/mergerfs_webui.cpp

2
src/mergerfs_webui.cpp

@ -170,6 +170,8 @@ _get_mounts(const httplib::Request &req_,
j = json::array(); j = json::array();
for(const auto &mount : mounts) for(const auto &mount : mounts)
{ {
if((not type.empty()) and (mount.type != type))
continue;
// if(mount.type != "fuse.mergerfs") // if(mount.type != "fuse.mergerfs")
// continue; // continue;
j.push_back(mount.dir); j.push_back(mount.dir);

Loading…
Cancel
Save