From 4abf0dacbe18a16d559db11d2d787ee7983cc5c9 Mon Sep 17 00:00:00 2001 From: Marcel van der Veldt Date: Fri, 30 Aug 2024 13:26:23 +0200 Subject: [PATCH] Fix playback of HTTP sources (#1630) due to a typo --- music_assistant/server/helpers/audio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/music_assistant/server/helpers/audio.py b/music_assistant/server/helpers/audio.py index 174ab9f8..905683ad 100644 --- a/music_assistant/server/helpers/audio.py +++ b/music_assistant/server/helpers/audio.py @@ -913,7 +913,7 @@ def get_ffmpeg_args( # these options are only supported in ffmpeg > 5 input_args += [ "-reconnect_on_network_error", - "5", + "1", "-reconnect_on_http_error", "5xx,4xx", ] -- 2.34.1