Ensure URL and key are valid if trying to stream

This commit is contained in:
jp9000 2014-03-10 13:46:28 -07:00
parent 5288467aeb
commit 03fc5b92b3

View File

@ -791,6 +791,9 @@ void OBSBasic::on_streamButton_clicked()
int aBitrate = config_get_uint(basicConfig, "OutputTemp",
"ABitrate");
if (!url || !key)
return;
string fullURL = url;
fullURL = fullURL + "/" + key;