From c93f2c8fe2f5cbdbb6eb858907a54b801de35e9b Mon Sep 17 00:00:00 2001 From: Nirvana Date: Fri, 5 Jun 2026 11:50:03 +0200 Subject: [PATCH] auth: pass provider name to notification factory --- lib/streaming_providers/base/auth/base_oauth2_auth.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/streaming_providers/base/auth/base_oauth2_auth.py b/lib/streaming_providers/base/auth/base_oauth2_auth.py index 669eb95..f977c2e 100644 --- a/lib/streaming_providers/base/auth/base_oauth2_auth.py +++ b/lib/streaming_providers/base/auth/base_oauth2_auth.py @@ -1164,6 +1164,7 @@ class BaseOAuth2Authenticator(OAuth2RemoteLoginMixin, BaseAuthenticator): expires_in=session.expires_in, interval=2, auth_callback=poll_callback, + provider_name=self.provider_name, # ← new ) logger.info(f"Remote login successful for {self.provider_name}")