From b38596f56ef1395ce2744e84e7ddbe86c8047d0b Mon Sep 17 00:00:00 2001 From: jo Date: Fri, 4 Mar 2022 15:27:48 +0100 Subject: [PATCH] fix(playout): remove stream_buffer_start in event dispatch Related to 9fc4552cfe20c057d63e72b644976b4d20d0e581 --- playout/libretime_playout/pypoliquidsoap.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/playout/libretime_playout/pypoliquidsoap.py b/playout/libretime_playout/pypoliquidsoap.py index 9c2024ad1..c2282b9d2 100644 --- a/playout/libretime_playout/pypoliquidsoap.py +++ b/playout/libretime_playout/pypoliquidsoap.py @@ -129,8 +129,7 @@ class PypoLiquidsoap: scheduled_now_webstream = [ x for x in scheduled_now - if x["type"] - in (eventtypes.STREAM_OUTPUT_START, eventtypes.STREAM_BUFFER_START) + if x["type"] in (eventtypes.STREAM_OUTPUT_START) ] schedule_ids = {x["row_id"] for x in scheduled_now_files}