VLCVideoUIView: remove racy assert
_enabled is set asynchronously in the main thread whereas detachFromParent is called from the thread closing the window, which is usually different from the main thread. Checking _enabled here is racy and could lead to triggering the assertion.
Please register or sign in to comment