From: Marcel van der Veldt Date: Thu, 16 Jan 2025 07:00:36 +0000 (+0100) Subject: fix small typo X-Git-Url: https://git.kitaultman.com/?a=commitdiff_plain;h=8a5decfb0dd3834014c69306792da1a137d9351f;p=music-assistant-server.git fix small typo --- diff --git a/music_assistant/helpers/audio.py b/music_assistant/helpers/audio.py index 0dd43ef6..ffe42da2 100644 --- a/music_assistant/helpers/audio.py +++ b/music_assistant/helpers/audio.py @@ -403,7 +403,7 @@ async def get_media_stream( seconds_streamed, ) if ffmpeg_proc.returncode != 0: - log_tail = "\n".join(ffmpeg_proc.log_history[:25]) + log_tail = "\n".join(list(ffmpeg_proc.log_history)[:25]) logger.debug(log_tail) streamdetails.seconds_streamed = seconds_streamed