Browse Source

fix: add additional lock when calling wait_for_work on android (#3524)

* fix: add additional lock when calling wait_for_work

* simplify
Jonathan Kelley 5 months ago
parent
commit
5815e05014
1 changed files with 2 additions and 0 deletions
  1. 2 0
      packages/desktop/src/webview.rs

+ 2 - 0
packages/desktop/src/webview.rs

@@ -445,6 +445,8 @@ impl WebviewInstance {
             }
 
             {
+                // lock the hack-ed in lock sync wry has some thread-safety issues with event handlers and async tasks
+                let _lock = crate::android_sync_lock::android_runtime_lock();
                 let fut = self.dom.wait_for_work();
                 pin_mut!(fut);