added support for External users
fixed potential errors
This commit is contained in:
parent
a47bc3207d
commit
62dc3d1efa
10 changed files with 257 additions and 130 deletions
|
@ -20,7 +20,7 @@ namespace Lieb.Data
|
|||
return Task.CompletedTask;
|
||||
}
|
||||
|
||||
private void CheckRaids(object? state)
|
||||
private async void CheckRaids(object? state)
|
||||
{
|
||||
using (var scope = _services.CreateScope())
|
||||
{
|
||||
|
@ -41,7 +41,7 @@ namespace Lieb.Data
|
|||
var raidService =
|
||||
scope.ServiceProvider
|
||||
.GetRequiredService<RaidService>();
|
||||
raidService.SendReminders();
|
||||
await raidService.SendReminders();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue