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 e59902c commit 10c9549Copy full SHA for 10c9549
Plugins/Flow.Launcher.Plugin.BrowserBookmark/Main.cs
@@ -88,16 +88,9 @@ public async Task<List<Result>> QueryAsync(Query query, CancellationToken token)
88
{
89
if (!_isInitialized)
90
91
- // If the list is not initialized, we need to wait for the list to be refreshed before querying
92
- await _initializationSemaphore.WaitAsync(token);
93
- try
94
- {
95
- return QueryResults(query);
96
- }
97
- finally
98
99
- _initializationSemaphore.Release();
100
+ // If the list is not initialized, we need to wait for the list to be initialized before querying
+ await LoadBookmarksInBackgroundAsync();
+ return QueryResults(query);
101
}
102
else
103
0 commit comments