From 7aa105748ffd281b034f23fddb751833968e473a Mon Sep 17 00:00:00 2001 From: Thulinma Date: Mon, 28 Feb 2022 15:21:49 +0100 Subject: [PATCH] Fix SRT input --- src/input/input.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input/input.cpp b/src/input/input.cpp index 062f4cbe..942a55f8 100644 --- a/src/input/input.cpp +++ b/src/input/input.cpp @@ -804,7 +804,7 @@ namespace Mist{ Util::logExitReason("buffer requested shutdown"); break; } - if (!bufferActive()){ + if (isSingular() && !bufferActive()){ Util::logExitReason("Buffer shut down"); return; }