Skip to content

Commit 21a6fdd

Browse files
committed
Fix issue in PortableDataLocationInUse
1 parent 2f52c1a commit 21a6fdd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Flow.Launcher.Infrastructure/UserSettings/DataLocation.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ public static string DataDirectory()
2121

2222
public static bool PortableDataLocationInUse()
2323
{
24-
if (Directory.Exists(PortableDataPath) && !File.Exists(DeletionIndicatorFile))
24+
if (Directory.Exists(PortableDataPath) &&
25+
!File.Exists(Path.Combine(PortableDataPath, DeletionIndicatorFile))
2526
return true;
2627

2728
return false;

0 commit comments

Comments
 (0)