From: Olaf Wintermann Date: Tue, 25 Feb 2025 20:17:21 +0000 (+0100) Subject: fix playlist was repeated even if no autoplay/repeat option was enabled X-Git-Url: https://uap-core.de/gitweb/?a=commitdiff_plain;h=3d06b47225b42d56da8e3936da0b019ff8626b41;p=uwplayer.git fix playlist was repeated even if no autoplay/repeat option was enabled --- diff --git a/application/playlist.c b/application/playlist.c index 206c079..e89edb3 100644 --- a/application/playlist.c +++ b/application/playlist.c @@ -59,6 +59,8 @@ void PlayListPlayNext(MainWindow *win, bool force) { current = len; } else if(current+1 < len) { current++; + } else if(!win->playlist.repeatList) { + return; } else { current = 0; }