From a1737cdf8b17c41ccf4c4911ad50e1f822e13fd8 Mon Sep 17 00:00:00 2001 From: Thulinma Date: Thu, 4 Jul 2024 11:49:29 +0200 Subject: [PATCH] Fix websockets pausing and then playing when the live point is out of the DVR window --- src/output/output_http.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/output/output_http.cpp b/src/output/output_http.cpp index d0f1ab08..c5ae7cf9 100644 --- a/src/output/output_http.cpp +++ b/src/output/output_http.cpp @@ -577,6 +577,8 @@ namespace Mist{ parseData = true; if (command.isMember("seek_time")){ handleWebsocketSeek(command); + }else{ + if (M.getLive() && currentTime() < startTime()){initialSeek();} } return true; }