Skip to content

Commit

Permalink
Merge pull request mmozeiko#3 from fsaimon/master
Browse files Browse the repository at this point in the history
fix config button did not work when path of rclone.conf was specified
  • Loading branch information
jonaknop authored Oct 7, 2018
2 parents 6594a7d + f115926 commit 51c278f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ QStringList GetRcloneConf()
{
conf = QDir(qApp->applicationDirPath()).filePath(conf);
}
return QStringList() << "--config" << conf;
return QStringList() << " --config" << conf;
}

void SetRcloneConf(const QString& rcloneConf)
Expand Down

0 comments on commit 51c278f

Please sign in to comment.