From fffe98804cb9c126ec91b7a7b67f2c917561ce02 Mon Sep 17 00:00:00 2001 From: Thulinma Date: Thu, 30 Jun 2022 14:04:34 +0200 Subject: [PATCH] Fixed TS SRT input not closing the connection when stopping for internal reasons rather than external reasons --- src/input/input_tssrt.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/input/input_tssrt.cpp b/src/input/input_tssrt.cpp index d12f9cba..6cd614e7 100644 --- a/src/input/input_tssrt.cpp +++ b/src/input/input_tssrt.cpp @@ -241,6 +241,7 @@ namespace Mist{ } // If we are here: we have a proper connection (either accepted or pull input) and should start parsing it as such Input::streamMainLoop(); + srtConn.close(); } bool inputTSSRT::needsLock(){return false;}