mirror of
https://github.com/uroni/urbackup_frontend_wx.git
synced 2025-10-26 11:19:28 +00:00
Don't set server default dirs
This commit is contained in:
parent
fa6af06b0f
commit
7c47af4df7
@ -519,7 +519,10 @@ bool Connector::saveSharedPaths(const std::vector<SBackupDir> &res)
|
||||
std::string args;
|
||||
for(size_t i=0;i<res.size();++i)
|
||||
{
|
||||
if(i!=0)
|
||||
if (res[i].server_default)
|
||||
continue;
|
||||
|
||||
if(!args.empty())
|
||||
args+="&";
|
||||
|
||||
std::string path = EscapeParamString(res[i].path.ToUTF8().data());
|
||||
|
||||
Loading…
Reference in New Issue
Block a user