[CHANGE] Added video info page

This commit is contained in:
max
2025-11-02 21:22:56 +01:00
parent bf957436f0
commit a849b7524d
5 changed files with 295 additions and 19 deletions

View File

@@ -31,11 +31,10 @@ public class ClientService(IServiceScopeFactory scopeFactory, ILogger<ClientServ
}
}
private async void CancellationRequested()
private void CancellationRequested()
{
foreach (var client in _loadedClients)
{
await SaveClientAsync(client);
client.Dispose();
}
}