Fixed bug in restarter command line that cause restarting to fail

This commit is contained in:
Patrick Simpson 2017-09-06 12:18:42 +03:00
parent 4ea8432f0f
commit b6a9d36282
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ namespace Acacia.Stubs.OutlookWrappers
string path = account.Account.BackingFilePath;
if (!string.IsNullOrEmpty(path) && System.IO.Path.GetExtension(path) == ".ost")
{
commandLine += " /cleankoe" + Util.QuoteCommandLine(path);
commandLine += " /cleankoe " + Util.QuoteCommandLine(path);
}
}
foreach(KeyValuePair<ZPushAccount, GABUser> share in _shares)