Skip to content

Commit 7393b27

Browse files
committed
Fix a typo in variable name in FirefoxBookmarkLoader.cs
1 parent 6373778 commit 7393b27

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Plugins/Flow.Launcher.Plugin.BrowserBookmark/FirefoxBookmarkLoader.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,10 +113,10 @@ Current profiles.ini structure example as of Firefox version 69.0.1
113113

114114
var defaultProfileFolderName = defaultProfileFolderNameRaw.Split('=').Last();
115115

116-
var indexOfDefaultProfileAtttributePath = lines.IndexOf("Path=" + defaultProfileFolderName);
116+
var indexOfDefaultProfileAttributePath = lines.IndexOf("Path=" + defaultProfileFolderName);
117117

118118
// Seen in the example above, the IsRelative attribute is always above the Path attribute
119-
var relativeAttribute = lines[indexOfDefaultProfileAtttributePath - 1];
119+
var relativeAttribute = lines[indexOfDefaultProfileAttributePath - 1];
120120

121121
return relativeAttribute == "0" // See above, the profile is located in a custom location, path is not relative, so IsRelative=0
122122
? defaultProfileFolderName + @"\places.sqlite"

0 commit comments

Comments
 (0)