Skip to content

Commit

Permalink
turn off "failed to update artwork" log when no login creds
Browse files Browse the repository at this point in the history
  • Loading branch information
PrajwalVandana committed Sep 17, 2024
1 parent d31ac9c commit 8d6716d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion maestro/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -1152,7 +1152,7 @@ def update_stream_metadata(self): # artwork + icecast metadata
import requests

self.break_stream_loop = True
if self.discord_connected or self.want_stream:
if self.discord_connected or self.want_stream and self.username is not None:
if not requests.post(
config.UPDATE_ARTWORK_URL,
params={"mount": self.username},
Expand Down

0 comments on commit 8d6716d

Please sign in to comment.