mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
No need to convert to array
This commit is contained in:
parent
d87a7ce32b
commit
69dd038311
1 changed files with 1 additions and 1 deletions
|
|
@ -161,7 +161,7 @@ public abstract class ChromiumBookmarkLoader : IBookmarkLoader
|
|||
var savedPaths = new ConcurrentDictionary<string, bool>();
|
||||
|
||||
// Get favicons based on bookmarks concurrently
|
||||
Parallel.ForEach(bookmarks.ToArray(), bookmark =>
|
||||
Parallel.ForEach(bookmarks, bookmark =>
|
||||
{
|
||||
// Use read-only connection to avoid locking issues
|
||||
var connection = new SqliteConnection($"Data Source={tempDbPath};Mode=ReadOnly");
|
||||
|
|
|
|||
Loading…
Reference in a new issue