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 4856399 commit f6d5bf3Copy full SHA for f6d5bf3
Flow.Launcher/ViewModel/ResultViewModel.cs
@@ -191,12 +191,14 @@ private async Task LoadImageAsync()
191
}
192
193
194
+ // TODO still needed after #1351?
195
var loadFullImage = (Path.GetExtension(imagePath) ?? "").Equals(".url", StringComparison.OrdinalIgnoreCase);
196
197
+ // TODO should use loadFullImage to hit cache?
198
if (ImageLoader.CacheContainImage(imagePath))
199
{
200
// will get here either when icoPath has value\icon delegate is null\when had exception in delegate
- image = await ImageLoader.LoadAsync(imagePath, loadFullImage).ConfigureAwait(false);
201
+ Image = await ImageLoader.LoadAsync(imagePath, loadFullImage).ConfigureAwait(false);
202
return;
203
204
0 commit comments