We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f717376 commit 49a42ddCopy full SHA for 49a42dd
Plugins/Flow.Launcher.Plugin.BrowserBookmark/FirefoxBookmarkLoader.cs
@@ -60,8 +60,7 @@ protected List<Bookmark> GetBookmarksFromPath(string placesPath)
60
File.Copy(placesPath, tempDbPath, true);
61
62
// Create the connection string and init the connection
63
- var dbPath = string.Format($"Data Source={tempDbPath};Mode=ReadOnly");
64
- using var dbConnection = new SqliteConnection(dbPath);
+ using var dbConnection = new SqliteConnection($"Data Source={tempDbPath};Mode=ReadOnly");
65
66
// Open connection to the database file and execute the query
67
dbConnection.Open();
0 commit comments