fix program suffixes
This commit is contained in:
bao-qian
2016-04-24 18:34:49 +01:00
parent 07fe141f8a
commit d416a77866
3 changed files with 3 additions and 4 deletions

View File

@@ -12,7 +12,7 @@ namespace Wox.Plugin.Program
var text = value as string[];
if (text != null)
{
return string.Join("", text);
return string.Join(";", text);
}
else
{