Skip to content

Commit b0b1a26

Browse files
committed
Fix build issue & Cleanup codes
1 parent c690e59 commit b0b1a26

File tree

1 file changed

+2
-3
lines changed
  • Plugins/Flow.Launcher.Plugin.Sys

1 file changed

+2
-3
lines changed

Plugins/Flow.Launcher.Plugin.Sys/Main.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
using System.Collections.Generic;
33
using System.Diagnostics;
44
using System.Globalization;
5-
using System.IO;
65
using System.Linq;
76
using System.Runtime.InteropServices;
87
using System.Windows;
@@ -435,7 +434,7 @@ private List<Result> Commands()
435434
AutoCompleteText = DataLocation.VersionLogDirectory,
436435
Action = c =>
437436
{
438-
_context.API.OpenDirectory(logPath);
437+
_context.API.OpenDirectory(DataLocation.VersionLogDirectory);
439438
return true;
440439
}
441440
},
@@ -459,7 +458,7 @@ private List<Result> Commands()
459458
AutoCompleteText = DataLocation.DataDirectory(),
460459
Action = c =>
461460
{
462-
_context.API.OpenDirectory(userDataPath);
461+
_context.API.OpenDirectory(DataLocation.DataDirectory());
463462
return true;
464463
}
465464
},

0 commit comments

Comments
 (0)