diff --git a/Flow.Launcher.Infrastructure/UserSettings/DataLocation.cs b/Flow.Launcher.Infrastructure/UserSettings/DataLocation.cs index 802f09492..4c3a7b417 100644 --- a/Flow.Launcher.Infrastructure/UserSettings/DataLocation.cs +++ b/Flow.Launcher.Infrastructure/UserSettings/DataLocation.cs @@ -56,7 +56,7 @@ namespace Flow.Launcher.Infrastructure.UserSettings return path; // If already absolute, return as-is - if (Path.IsPathRooted(path)) + if (Path.IsPathFullyQualified(path)) return path; // Resolve relative to ProgramDirectory, handling invalid path formats gracefully