From b6d86d3d0d39a0fff1c57257d698d6191fb8339c Mon Sep 17 00:00:00 2001 From: Developer 02 Date: Wed, 5 Feb 2025 10:26:51 +0100 Subject: [PATCH] fix(AuthClient): Aktualisiert, um GC.SuppressFinalize in DisposeAsync zu verwenden --- DigitalData.Auth.Client/AuthClient.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/DigitalData.Auth.Client/AuthClient.cs b/DigitalData.Auth.Client/AuthClient.cs index ebb8ac9..ffa3d65 100644 --- a/DigitalData.Auth.Client/AuthClient.cs +++ b/DigitalData.Auth.Client/AuthClient.cs @@ -69,5 +69,6 @@ public class AuthClient : IAuthClient, IAsyncDisposable { await _connection.StopAsync(); await _connection.DisposeAsync(); + GC.SuppressFinalize(this); } } \ No newline at end of file