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

This commit is contained in:
unknown
2025-12-17 21:03:32 +01:00
parent acd633d3eb
commit f2c6a5ec0d
18 changed files with 4786 additions and 515 deletions

View File

@@ -7,7 +7,6 @@ from librespot.core import Session
from librespot.crypto import DiffieHellman
from librespot.proto import Connect_pb2 as Connect
from librespot.structure import Closeable, Runnable, SessionListener
from requests.structures import CaseInsensitiveDict
import base64
import concurrent.futures
import copy
@@ -276,7 +275,7 @@ class ZeroconfServer(Closeable):
method = request_line[0].decode()
path = request_line[1].decode()
http_version = request_line[2].decode()
headers = CaseInsensitiveDict()
headers = {}
while True:
header = request.readline().strip()
if not header: