From d36a9664f7e9dbfecfde486e7521eb62f09a6b8d Mon Sep 17 00:00:00 2001 From: Thulinma Date: Fri, 14 Dec 2018 16:44:22 +0100 Subject: [PATCH] Fixed incorrect stream specific flag for RTMP_PUSH_REWRITE trigger capabilties --- src/controller/controller_capabilities.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controller/controller_capabilities.cpp b/src/controller/controller_capabilities.cpp index b0863e3c..6bd952dd 100644 --- a/src/controller/controller_capabilities.cpp +++ b/src/controller/controller_capabilities.cpp @@ -107,7 +107,7 @@ namespace Controller { trgs["STREAM_BUFFER"]["response_action"] = "None."; trgs["RTMP_PUSH_REWRITE"]["when"] = "On incoming RTMP pushes, allows rewriting the RTMP URL to/from custom formatting"; - trgs["RTMP_PUSH_REWRITE"]["stream_specific"] = true; + trgs["RTMP_PUSH_REWRITE"]["stream_specific"] = false; trgs["RTMP_PUSH_REWRITE"]["payload"] = "full current RTMP url (string)\nconnection hostname (string)"; trgs["RTMP_PUSH_REWRITE"]["response"] = "when-blocking"; trgs["RTMP_PUSH_REWRITE"]["response_action"] = "If non-empty, overrides the full RTMP url to the response value. If empty, denies the incoming RTMP push.";