0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 04:42:18 +02:00

UI: Make sure user can still stream if auth fails

The stream key is saved, so don't overwrite stream key with auth key if
the auth key is invalid.
This commit is contained in:
jp9000 2019-02-19 17:59:29 -08:00
parent 5fb02c02dc
commit 0bab66ca52

View File

@ -276,6 +276,9 @@ try {
void OAuthStreamKey::OnStreamConfig()
{
if (key_.empty())
return;
OBSBasic *main = OBSBasic::Get();
obs_service_t *service = main->GetService();