fix async diario

This commit is contained in:
Samuele Locatelli
2021-05-25 16:42:04 +02:00
parent 0938c77d39
commit b7cba4236c
+3 -3
View File
@@ -158,11 +158,11 @@ namespace MP.Stats.Pages
MessageService.EA_SearchUpdated -= OnSeachUpdated;
}
public void OnSeachUpdated()
public async void OnSeachUpdated()
{
InvokeAsync(() =>
await InvokeAsync(() =>
{
UpdateData();
Task task = UpdateData();
StateHasChanged();
});
}