Remove lua app data executor ref when done

This commit is contained in:
Filip Tibell 2024-01-26 09:00:07 +01:00
parent bab29a5cbf
commit fe4563b4f8
No known key found for this signature in database

View file

@ -1,4 +1,4 @@
use std::sync::Arc;
use std::sync::{Arc, Weak};
use mlua::prelude::*;
use smol::prelude::*;
@ -218,6 +218,9 @@ impl<'lua> Runtime<'lua> {
};
main_exec.run(fut).await;
// Make sure we don't leave any references behind
self.lua.remove_app_data::<Weak<Executor>>();
}
/**