mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-07 11:46:30 +02:00
Now checks if path has trailing slash before adding a new one
This commit is contained in:
@@ -109,7 +109,7 @@ namespace Wox.Plugin.Folder
|
||||
return false;
|
||||
}
|
||||
}
|
||||
context.API.ChangeQuery(item.Path+"\\");
|
||||
context.API.ChangeQuery(item.Path + (item.Path.EndsWith("\\")? "": "\\"));
|
||||
return false;
|
||||
},
|
||||
ContextData = item
|
||||
|
||||
Reference in New Issue
Block a user