Skip to content

Commit

Permalink
fix X not in list (#779)
Browse files Browse the repository at this point in the history
  • Loading branch information
wangw469 authored Dec 7, 2024
1 parent 889ab7f commit e44ded4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion streamrip/client/qobuz.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,8 @@ async def get_app_id_and_secrets(self) -> tuple[str, list[str]]:
).decode("utf-8")

vals: List[str] = list(secrets.values())
vals.remove("")
if "" in vals:
vals.remove("")

secrets_list = vals

Expand Down

0 comments on commit e44ded4

Please sign in to comment.