From 5020f615899e7acb3bf5643c2cb0457b0d644c68 Mon Sep 17 00:00:00 2001 From: JohannMG Date: Wed, 8 Jul 2020 17:30:28 -0700 Subject: [PATCH] UI: Update Facebook get stream key URL Old URL is being phased out for the cleaner interface. Changed in both the settings pane and the wizard. --- UI/window-basic-auto-config.cpp | 3 ++- UI/window-basic-settings-stream.cpp | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/UI/window-basic-auto-config.cpp b/UI/window-basic-auto-config.cpp index 74d60fd90..f6a32920f 100644 --- a/UI/window-basic-auto-config.cpp +++ b/UI/window-basic-auto-config.cpp @@ -592,7 +592,8 @@ void AutoConfigStreamPage::UpdateKeyLink() streamKeyLink = "https://restream.io/settings/streaming-setup?from=OBS"; } else if (serviceName == "Facebook Live") { - streamKeyLink = "https://www.facebook.com/live/create?ref=OBS"; + streamKeyLink = + "https://www.facebook.com/live/producer?ref=OBS"; } else if (serviceName.startsWith("Twitter")) { streamKeyLink = "https://www.pscp.tv/account/producer"; } else if (serviceName.startsWith("YouStreamer")) { diff --git a/UI/window-basic-settings-stream.cpp b/UI/window-basic-settings-stream.cpp index e2343532a..d22658aab 100644 --- a/UI/window-basic-settings-stream.cpp +++ b/UI/window-basic-settings-stream.cpp @@ -247,7 +247,8 @@ void OBSBasicSettings::UpdateKeyLink() streamKeyLink = "https://restream.io/settings/streaming-setup?from=OBS"; } else if (serviceName == "Facebook Live") { - streamKeyLink = "https://www.facebook.com/live/create?ref=OBS"; + streamKeyLink = + "https://www.facebook.com/live/producer?ref=OBS"; } else if (serviceName.startsWith("Twitter")) { streamKeyLink = "https://www.pscp.tv/account/producer"; } else if (serviceName.startsWith("YouStreamer")) {