Added missing await.

This commit is contained in:
Jared Goodwin 2023-07-18 08:50:43 -07:00
parent 066a1bdd4d
commit 4a7bf7c5ae

View File

@ -294,7 +294,7 @@ using (var scope = app.Services.CreateScope())
}
await dataService.SetAllDevicesNotOnline();
dataService.CleanupOldRecords();
await dataService.CleanupOldRecords();
}
await app.RunAsync();