mirror of
https://github.com/lune-org/lune.git
synced 2025-04-04 10:30:54 +01:00
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:
parent
390937d918
commit
9cb1ba43d0
1 changed files with 6 additions and 6 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue