You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: throw Java exception instead of exit(1) on fatal errors
Replace die() → exit(1) with die() → ThrowNew(RuntimeException) so that
mpv initialization failures are reported as catchable Java exceptions
instead of killing the entire Android process.
All call sites now return after die() since ThrowNew only sets a pending
exception flag without unwinding the stack.
0 commit comments