mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Fix issue in PortableDataLocationInUse
This commit is contained in:
parent
2f52c1aa1b
commit
21a6fdd100
1 changed files with 2 additions and 1 deletions
|
|
@ -21,7 +21,8 @@ namespace Flow.Launcher.Infrastructure.UserSettings
|
|||
|
||||
public static bool PortableDataLocationInUse()
|
||||
{
|
||||
if (Directory.Exists(PortableDataPath) && !File.Exists(DeletionIndicatorFile))
|
||||
if (Directory.Exists(PortableDataPath) &&
|
||||
!File.Exists(Path.Combine(PortableDataPath, DeletionIndicatorFile))
|
||||
return true;
|
||||
|
||||
return false;
|
||||
|
|
|
|||
Loading…
Reference in a new issue