rustdesk
2022-02-06 18:19:06 +08:00
parent 3ec69b6d97
commit 809c220eaf
4 changed files with 22 additions and 6 deletions

View File

@@ -61,7 +61,7 @@ impl ConnectionManager {
fn call(&self, func: &str, args: &[Value]) {
let r = self.read().unwrap();
if let Some(ref e) = r.root {
allow_err!(e.call_method(func, args));
allow_err!(e.call_method(func, &super::value_crash_workaround(args)[..]));
}
}