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 37f1a64 commit 1c6d207Copy full SHA for 1c6d207
Flow.Launcher/ViewModel/ResultViewModel.cs
@@ -59,7 +59,7 @@ private async void LoadImage()
59
{
60
try
61
62
- Image = Result.Icon();
+ image = Result.Icon();
63
return;
64
}
65
catch (Exception e)
@@ -71,7 +71,7 @@ private async void LoadImage()
71
if (ImageLoader.CacheContainImage(imagePath))
72
73
// will get here either when icoPath has value\icon delegate is null\when had exception in delegate
74
- Image = ImageLoader.Load(imagePath);
+ image = ImageLoader.Load(imagePath);
75
76
77
0 commit comments