Server: Stop WSServer on OBS exit

This should fix issues with race conditions and crashes on OBS exit.
This commit is contained in:
Eric Lindvall 2020-12-29 11:27:51 -08:00
parent 7ae016bd3b
commit 9275f7c2a9

View File

@ -233,6 +233,7 @@ void WSEvents::FrontendEventHandler(enum obs_frontend_event event, void* private
case OBS_FRONTEND_EVENT_EXIT:
owner->unhookTransitionPlaybackEvents();
owner->OnExit();
owner->_srv->stop();
break;
}
}