We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91eeaed commit 9e0e653Copy full SHA for 9e0e653
src/mediaplayer
@@ -210,7 +210,7 @@ def signal_album_art_change():
210
211
def download_art(art_url):
212
logger.debug("Updating album art")
213
- if art_url.startswith("http"):
+ if (art_url.startswith("http")):
214
resp = requests.get(art_url)
215
with open(artfp, "wb") as fh:
216
fh.write(resp.content)
@@ -297,7 +297,6 @@ def download_lyrics(artist, title):
297
lyrlogger.setLevel(logging.INFO)
298
lt = syncedlyrics.search(
299
f"{artist} {title}",
300
- allow_plain_format=False,
301
providers=config["lyrics_providers"],
302
)
303
# This is the main logger
0 commit comments