Browse Source

mergerfs_webui.cpp

webui
Antonio SJ Musumeci 1 week ago
parent
commit
4e78e2ece4
  1. 3
      src/mergerfs_webui.cpp

3
src/mergerfs_webui.cpp

@ -184,8 +184,11 @@ _get_kvs(const httplib::Request &req_,
httplib::Response &res_) httplib::Response &res_)
{ {
json j; json j;
std::string mount;
std::map<std::string,std::string> kvs; std::map<std::string,std::string> kvs;
mount = req_.get_param_value("mount");
mergerfs::api::get_kvs("/mnt/tmp/mergerfs",&kvs); mergerfs::api::get_kvs("/mnt/tmp/mergerfs",&kvs);
j = kvs; j = kvs;

Loading…
Cancel
Save