Browse Source

mergerfs_webui.cpp

webui
Antonio SJ Musumeci 2 days ago
parent
commit
b9b7fd85da
  1. 3
      src/mergerfs_webui.cpp

3
src/mergerfs_webui.cpp

@ -209,6 +209,8 @@ window.onload = () => { loadMounts(); };
// If Equal Return True // If Equal Return True
#define IERT(S) if(type_ == (S)) return true; #define IERT(S) if(type_ == (S)) return true;
// If Equal Return False
#define IERF(S) if(type_ == (S)) return false;
static static
bool bool
@ -226,7 +228,6 @@ _valid_fs_type(const std::string &type_)
IERT("ntfs"); IERT("ntfs");
IERT("vfat"); IERT("vfat");
IERT("exfat"); IERT("exfat");
IERT("fuse.kio-fuse");
if(str::startswith(type_,"fuse.")) if(str::startswith(type_,"fuse."))
return true; return true;

Loading…
Cancel
Save