fix(AuthClient): Aktualisiert, um GC.SuppressFinalize in DisposeAsync zu verwenden

This commit is contained in:
Developer 02 2025-02-05 10:26:51 +01:00
parent 5f9926e911
commit b6d86d3d0d

View File

@ -69,5 +69,6 @@ public class AuthClient : IAuthClient, IAsyncDisposable
{
await _connection.StopAsync();
await _connection.DisposeAsync();
GC.SuppressFinalize(this);
}
}