Skip to content

Commit 69dd038

Browse files
committed
No need to convert to array
1 parent d87a7ce commit 69dd038

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ private void LoadFaviconsFromDb(string dbPath, List<Bookmark> bookmarks)
161161
var savedPaths = new ConcurrentDictionary<string, bool>();
162162

163163
// Get favicons based on bookmarks concurrently
164-
Parallel.ForEach(bookmarks.ToArray(), bookmark =>
164+
Parallel.ForEach(bookmarks, bookmark =>
165165
{
166166
// Use read-only connection to avoid locking issues
167167
var connection = new SqliteConnection($"Data Source={tempDbPath};Mode=ReadOnly");

0 commit comments

Comments
 (0)