From 2680fb00b1d612209a1553b74edfa808215fdd51 Mon Sep 17 00:00:00 2001 From: jp9000 Date: Sat, 9 Feb 2019 12:26:34 -0800 Subject: [PATCH] UI: Fix issue with Mixer Mixer was using the Twitch ID. --- UI/auth-mixer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UI/auth-mixer.cpp b/UI/auth-mixer.cpp index c30451553..373cb6e30 100644 --- a/UI/auth-mixer.cpp +++ b/UI/auth-mixer.cpp @@ -271,8 +271,8 @@ std::shared_ptr MixerAuth::Login(QWidget *parent) std::shared_ptr auth = std::make_shared(mixerDef); - std::string client_id = TWITCH_CLIENTID; - deobfuscate_str(&client_id[0], TWITCH_HASH); + std::string client_id = MIXER_CLIENTID; + deobfuscate_str(&client_id[0], MIXER_HASH); if (!auth->GetToken(MIXER_TOKEN_URL, client_id, MIXER_SCOPE_VERSION, QT_TO_UTF8(login.GetCode()))) {