From 1648dcc7f23620f44ad2e11c38450beb98e72b87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dennis=20S=C3=A4dtler?= Date: Mon, 18 Nov 2024 15:43:44 +0100 Subject: [PATCH] UI: Fix autoconfig saving signed stream key --- UI/window-basic-auto-config.cpp | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/UI/window-basic-auto-config.cpp b/UI/window-basic-auto-config.cpp index eaed589ae..6b1667609 100644 --- a/UI/window-basic-auto-config.cpp +++ b/UI/window-basic-auto-config.cpp @@ -427,17 +427,6 @@ bool AutoConfigStreamPage::validatePage() multitrackVideoBitrate += bitrate; } - // grab a streamkey from the go live config if we can - for (auto &endpoint : config.ingest_endpoints) { - const char *p = endpoint.protocol.c_str(); - const char *auth = endpoint.authentication ? endpoint.authentication->c_str() - : nullptr; - if (qstrnicmp("RTMP", p, 4) == 0 && auth && *auth) { - wiz->key = auth; - break; - } - } - if (multitrackVideoBitrate > 0) { wiz->startingBitrate = multitrackVideoBitrate; wiz->idealBitrate = multitrackVideoBitrate;