fix(Runtime): remove unwraps and handle None case

This commit removes the chained unwraps introduced previously with a match statement which handles the case when a lua thread may return no values.
This commit is contained in:
Erica Marigold 2024-04-11 18:18:10 +05:30
parent 390937d918
commit 9cb1ba43d0
No known key found for this signature in database
GPG key ID: 2768CC0C23D245D1

View file

@ -7,7 +7,7 @@ use std::{
},
};
use mlua::{Lua, Value};
use mlua::{IntoLuaMulti, Lua, Value};
use mlua_luau_scheduler::Scheduler;
mod builtins;
@ -86,11 +86,11 @@ impl Runtime {
let main_thread_id = sched.push_thread_back(main, ())?;
sched.run().await;
let thread_res = sched
.get_thread_result(main_thread_id)
.unwrap()
.unwrap()
.into_vec();
let thread_res = match sched.get_thread_result(main_thread_id) {
Some(res) => res,
None => Value::Nil.into_lua_multi(&self.lua),
}?
.into_vec();
Ok((
sched.get_exit_code().unwrap_or({
if got_any_error.load(Ordering::SeqCst) {