From: Olaf Wintermann Date: Fri, 7 Jul 2023 21:14:45 +0000 (+0200) Subject: fix repeat X-Git-Url: https://develop.uap-core.de/gitweb/uwplayer.git/commitdiff_plain/5cb490b04836ef624cdd0ba975ee5c2ff2e51a23 fix repeat --- diff --git a/application/player.c b/application/player.c index 2d63135..a2b522d 100644 --- a/application/player.c +++ b/application/player.c @@ -597,6 +597,8 @@ void PlayerEOF(Player *p) { if(win->playlist.repeatTrack) { char *cmd = "{ \"command\": [\"set_property\", \"playback-time\", 0] }\n"; write(p->ipc, cmd, strlen(cmd)); + cmd = "{ \"command\": [\"set_property\", \"pause\", false] }\n"; + write(p->ipc, cmd, strlen(cmd)); } else { AppExecProc(play_next, NULL); }