From 8d6cd7561c28f72a66d81e3271115adb3f92afdf Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 18 Dec 2025 01:15:36 +0100 Subject: [PATCH] SpotiClub Patch v0.2.0 --- librespot/oauth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/librespot/oauth.py b/librespot/oauth.py index 2540f0c..1d5ecdc 100644 --- a/librespot/oauth.py +++ b/librespot/oauth.py @@ -105,7 +105,7 @@ class OAuth: self.send_response(200) self.send_header('Content-type', 'text/html') self.end_headers() - success_page = self.server.success_page_content or "librespot-python received callback" + success_page = self.server.success_page_content or "Spotify authorization successful! You can now close this window and return to your client's window." self.wfile.write(success_page.encode('utf-8')) pass