Skip to content

Commit 9e0e653

Browse files
committed
fixed lyrics
1 parent 91eeaed commit 9e0e653

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/mediaplayer

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ def signal_album_art_change():
210210

211211
def download_art(art_url):
212212
logger.debug("Updating album art")
213-
if art_url.startswith("http"):
213+
if (art_url.startswith("http")):
214214
resp = requests.get(art_url)
215215
with open(artfp, "wb") as fh:
216216
fh.write(resp.content)
@@ -297,7 +297,6 @@ def download_lyrics(artist, title):
297297
lyrlogger.setLevel(logging.INFO)
298298
lt = syncedlyrics.search(
299299
f"{artist} {title}",
300-
allow_plain_format=False,
301300
providers=config["lyrics_providers"],
302301
)
303302
# This is the main logger

0 commit comments

Comments
 (0)