diff --git a/UI/window-basic-auto-config.cpp b/UI/window-basic-auto-config.cpp index 6d1c61ebb..01bfa7e93 100644 --- a/UI/window-basic-auto-config.cpp +++ b/UI/window-basic-auto-config.cpp @@ -686,7 +686,8 @@ void AutoConfigStreamPage::ServiceChanged() if (main->auth) { auto system_auth_service = main->auth->service(); - bool service_check = service == system_auth_service; + bool service_check = service.find(system_auth_service) != + std::string::npos; #if YOUTUBE_ENABLED service_check = service_check ? service_check diff --git a/UI/window-basic-settings-stream.cpp b/UI/window-basic-settings-stream.cpp index 9c5224a7b..01c13db03 100644 --- a/UI/window-basic-settings-stream.cpp +++ b/UI/window-basic-settings-stream.cpp @@ -481,7 +481,8 @@ void OBSBasicSettings::on_service_currentIndexChanged(int) } auto system_auth_service = main->auth->service(); - bool service_check = service == system_auth_service; + bool service_check = service.find(system_auth_service) != + std::string::npos; #if YOUTUBE_ENABLED service_check = service_check ? service_check : IsYouTubeService(system_auth_service) &&