From 8a5decfb0dd3834014c69306792da1a137d9351f Mon Sep 17 00:00:00 2001 From: Marcel van der Veldt Date: Thu, 16 Jan 2025 08:00:36 +0100 Subject: [PATCH] fix small typo --- music_assistant/helpers/audio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.34.1