Clear picture in between loads

This commit is contained in:
anomny
2025-11-03 20:06:06 +01:00
parent a74be66e47
commit c3973b6cfb
3 changed files with 6 additions and 1 deletions

View File

@@ -23,7 +23,10 @@ public class MigrationService : IHostedService
await MigrateAsync();
}
public async Task StopAsync(CancellationToken cancellationToken) { }
public async Task StopAsync(CancellationToken cancellationToken)
{
await Task.CompletedTask;
}
public async Task<MigrationModel> MigrateAsync()
{