fix X not in list (#779)

This commit is contained in:
wen wang 2024-12-08 01:28:55 +08:00 committed by GitHub
parent 889ab7fb15
commit e44ded42ff
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -117,6 +117,7 @@ class QobuzSpoofer:
).decode("utf-8") ).decode("utf-8")
vals: List[str] = list(secrets.values()) vals: List[str] = list(secrets.values())
if "" in vals:
vals.remove("") vals.remove("")
secrets_list = vals secrets_list = vals