File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
Plugins/Flow.Launcher.Plugin.Sys Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 2
2
using System . Collections . Generic ;
3
3
using System . Diagnostics ;
4
4
using System . Globalization ;
5
- using System . IO ;
6
5
using System . Linq ;
7
6
using System . Runtime . InteropServices ;
8
7
using System . Windows ;
@@ -435,7 +434,7 @@ private List<Result> Commands()
435
434
AutoCompleteText = DataLocation . VersionLogDirectory ,
436
435
Action = c =>
437
436
{
438
- _context . API . OpenDirectory ( logPath ) ;
437
+ _context . API . OpenDirectory ( DataLocation . VersionLogDirectory ) ;
439
438
return true ;
440
439
}
441
440
} ,
@@ -459,7 +458,7 @@ private List<Result> Commands()
459
458
AutoCompleteText = DataLocation . DataDirectory ( ) ,
460
459
Action = c =>
461
460
{
462
- _context . API . OpenDirectory ( userDataPath ) ;
461
+ _context . API . OpenDirectory ( DataLocation . DataDirectory ( ) ) ;
463
462
return true ;
464
463
}
465
464
} ,
You can’t perform that action at this time.
0 commit comments