We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8651ba3 commit f753ca6Copy full SHA for f753ca6
SimpleWeather.Uno/SimpleWeather.Uno.Shared/Controls/ViewModels/ForecastsListViewModel.cs
@@ -96,7 +96,7 @@ public void RefreshForecasts()
96
}
97
else
98
{
99
- Forecasts.RefreshAsync();
+ DispatcherQueue.EnqueueAsync(Forecasts.RefreshAsync);
100
101
102
@@ -113,7 +113,7 @@ public void RefreshHourlyForecasts()
113
114
115
116
- HourlyForecasts.RefreshAsync();
+ DispatcherQueue.EnqueueAsync(HourlyForecasts.RefreshAsync);
117
118
119
0 commit comments