Merge pull request #462 from lances101/bugfix-447

Fix #447 Trailing slash for folders plugin
This commit is contained in:
bao-qian 2016-01-04 17:36:51 +00:00
commit f66dd51084

View file

@ -109,7 +109,7 @@ namespace Wox.Plugin.Folder
return false; return false;
} }
} }
context.API.ChangeQuery(item.Path); context.API.ChangeQuery(item.Path + (item.Path.EndsWith("\\")? "": "\\"));
return false; return false;
}, },
ContextData = item ContextData = item