From 280b8f0690c02840011842f3002bad23eb42d78d Mon Sep 17 00:00:00 2001 From: Glenn Thompson Date: Tue, 2 Dec 2025 08:47:35 +0300 Subject: [PATCH] fix: Use 'normal' mode instead of 'sequential' for playlist playback The 'sequential' mode in Liquidsoap starts playback at a random position in the playlist, causing tracks to play out of order. Switching to 'normal' mode ensures the playlist starts from the beginning and plays sequentially through all tracks in order. --- docker/asteroid-radio-docker.liq | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/asteroid-radio-docker.liq b/docker/asteroid-radio-docker.liq index 60ecacb..3376541 100644 --- a/docker/asteroid-radio-docker.liq +++ b/docker/asteroid-radio-docker.liq @@ -23,7 +23,7 @@ settings.server.telnet.bind_addr.set("0.0.0.0") # This file is managed by Asteroid's stream control system # Falls back to directory scan if playlist file doesn't exist radio = playlist( - mode="sequential", # Play through playlist in order, then loop + mode="normal", # Normal mode: play sequentially without initial randomization reload=300, # Check for playlist updates every 5 minutes reload_mode="watch", # Watch file for changes (more efficient than polling) "/app/stream-queue.m3u"