mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
fix a null pointer issue
This commit is contained in:
parent
c0216e0800
commit
60f06f97fa
2 changed files with 1 additions and 4 deletions
|
|
@ -38,7 +38,7 @@ namespace Wox.Plugin.Program.ProgramSources
|
|||
using (var key = root.OpenSubKey(item))
|
||||
{
|
||||
string path = key.GetValue("") as string;
|
||||
if (path == null) continue;
|
||||
if (string.IsNullOrEmpty(path)) continue;
|
||||
|
||||
// fix path like this ""\"C:\\folder\\executable.exe\"""
|
||||
const int begin = 0;
|
||||
|
|
|
|||
3
Wox.sln
3
Wox.sln
|
|
@ -62,9 +62,6 @@ EndProject
|
|||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Wox.Plugin.Everything", "Plugins\Wox.Plugin.Everything\Wox.Plugin.Everything.csproj", "{230AE83F-E92E-4E69-8355-426B305DA9C0}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(Performance) = preSolution
|
||||
HasPerformanceSessions = true
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
|
|
|
|||
Loading…
Reference in a new issue