Skip to content

Commit

Permalink
Chore: Extend exception info
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelveldt committed Feb 5, 2025
1 parent 73ed732 commit 69cc185
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion music_assistant/helpers/audio.py
Original file line number Diff line number Diff line change
Expand Up @@ -659,7 +659,7 @@ async def resolve_radio_stream(mass: MusicAssistant, url: str) -> tuple[str, Str
stream_type = StreamType.HLS

except Exception as err:
LOGGER.warning("Error while parsing radio URL %s: %s", url, err)
LOGGER.warning("Error while parsing radio URL %s: %s", url, str(err))
return (url, stream_type)

result = (resolved_url, stream_type)
Expand Down

0 comments on commit 69cc185

Please sign in to comment.