App: Make HintContextChange() synchronous by using MainDispatcher
Test / Run tests (push) Successful in 2m37s

This commit is contained in:
2024-09-12 11:40:32 +02:00
parent 5c08f61963
commit f09c43c1bd
18 changed files with 32 additions and 32 deletions
+1 -1
View File
@@ -136,7 +136,7 @@ namespace Elwig.Services {
}
}
await App.HintContextChange();
App.HintContextChange();
return newFbNr;
}
+1 -1
View File
@@ -125,7 +125,7 @@ namespace Elwig.Services {
}
}
await App.HintContextChange();
App.HintContextChange();
return (year, dsnr, newMgNr, newSortId);
}
+1 -1
View File
@@ -177,7 +177,7 @@ namespace Elwig.Services {
await ctx.SaveChangesAsync();
}
await App.HintContextChange();
App.HintContextChange();
}
}
}
+2 -2
View File
@@ -338,7 +338,7 @@ namespace Elwig.Services {
var b = new Billing(year);
await b.FinishSeason();
await b.CalculateBuckets();
await App.HintContextChange();
App.HintContextChange();
using var ctx = new AppDbContext();
var data = await DeliveryConfirmationDeliveryData.ForMember(ctx.DeliveryParts, year, m);
@@ -626,7 +626,7 @@ namespace Elwig.Services {
}
}
await App.HintContextChange();
App.HintContextChange();
return newMgNr;
}