mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 03:07:04 +02:00
Change plugin config file format (from ini to json)
This commit is contained in:
@@ -32,9 +32,9 @@ namespace Wox
|
||||
{
|
||||
resolvedPath = path;
|
||||
}
|
||||
else if (!string.IsNullOrEmpty(path) && File.Exists(pluginDirectory + path))
|
||||
else if (!string.IsNullOrEmpty(path) && File.Exists(Path.Combine(pluginDirectory,path)))
|
||||
{
|
||||
resolvedPath = pluginDirectory + path;
|
||||
resolvedPath = Path.Combine(pluginDirectory, path);
|
||||
}
|
||||
|
||||
if (resolvedPath.ToLower().EndsWith(".exe") || resolvedPath.ToLower().EndsWith(".lnk"))
|
||||
|
||||
Reference in New Issue
Block a user