Explorar el Código

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

* fix: add additional lock when calling wait_for_work

* simplify
Jonathan Kelley hace 5 meses
padre
commit
5815e05014
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  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);