diff --git a/server/config.cpp b/server/config.cpp index c8b5741e..344f02e5 100644 --- a/server/config.cpp +++ b/server/config.cpp @@ -121,7 +121,8 @@ void Config::save() init(); std::ofstream ofs(filename_.c_str(), std::ofstream::out | std::ofstream::trunc); json clients = {{"ConfigVersion", 2}, {"Groups", getGroups()}}; - ofs << std::setw(4) << clients; + // ofs << std::setw(4) << clients; + ofs << clients; ofs.close(); }