1
0
mirror of https://github.com/Kopano-dev/kopano-ol-extension.git synced 2023-10-10 13:37:40 +02:00

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

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)