obs-outputs: Fix bug (headers not always sent)

If a disconnection occurs, the sent_headers would still be set to true,
and when a reconnect occurs, it would not send the headers again.
This commit is contained in:
jp9000
2015-03-07 10:07:16 -08:00
parent 5faa5157c5
commit 56f4dd5359

View File

@@ -264,6 +264,7 @@ static void *send_thread(void *data)
}
stream->active = false;
stream->sent_headers = false;
return NULL;
}