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 653dc83 commit 3623e11Copy full SHA for 3623e11
Flow.Launcher.Infrastructure/Image/ImageCache.cs
@@ -70,7 +70,7 @@ async void SliceExtra()
70
// This is done so that we don't constantly perform this resizing operation and also maintain the image cache size at the same time
71
if (Data.Count > permissibleFactor * MaxCached)
72
{
73
- await semaphore.WaitAsync();
+ await semaphore.WaitAsync().ConfigureAwait(false);
74
// To delete the images from the data dictionary based on the resizing of the Usage Dictionary
75
// Double Check to avoid concurrent remove
76
0 commit comments