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