SpotiClub Patch v0.2.0
Some checks failed
CodeQL / Analyze (python) (push) Has been cancelled

This commit is contained in:
unknown
2025-12-18 01:15:36 +01:00
parent 1bf4ec9859
commit 8d6cd7561c

View File

@@ -105,7 +105,7 @@ class OAuth:
self.send_response(200) self.send_response(200)
self.send_header('Content-type', 'text/html') self.send_header('Content-type', 'text/html')
self.end_headers() 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')) self.wfile.write(success_page.encode('utf-8'))
pass pass