fix: kill and wait stremio-runtime child after readers finish
Some checks failed
Continuous integration / test (push) Has been cancelled

This commit is contained in:
Timothy Z. 2026-05-10 12:35:21 +00:00
parent 677f7b6eff
commit d0575ead00

View file

@ -178,6 +178,9 @@ impl StremioServer {
}); });
out_thread.join().ok(); out_thread.join().ok();
err_thread.join().ok(); err_thread.join().ok();
// Drop on Windows neither kills nor waits, so reap explicitly.
child.kill().ok();
child.wait().ok();
} }
Err(err) => { Err(err) => {
nwg::error_message( nwg::error_message(