mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Fix IsRelative logic.
This commit is contained in:
parent
33a5ca845a
commit
57470a9799
1 changed files with 2 additions and 1 deletions
|
|
@ -370,7 +370,8 @@ public class FirefoxBookmarkLoader : FirefoxBookmarkLoaderBase
|
|||
|
||||
var relativeAttribute = lines[indexOfDefaultProfileAttributePath - 1];
|
||||
|
||||
return relativeAttribute == "0" // See above, the profile is located in a custom location, path is not relative, so IsRelative=0
|
||||
// See above, the profile is located in a custom location, path is not relative, so IsRelative=0
|
||||
return (relativeAttribute == "0" || relativeAttribute == "IsRelative=0")
|
||||
? relativePath : absoluePath;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue