Skip to content

fix(core): use postMessage IPC for remote URLs on macOS closes #7662 #1411

fix(core): use postMessage IPC for remote URLs on macOS closes #7662

fix(core): use postMessage IPC for remote URLs on macOS closes #7662 #1411

Triggered via pull request September 4, 2023 23:11
Status Success
Total duration 21s
Artifacts

check-license-header.yml

on: pull_request
Fit to window
Zoom out
Zoom in

Annotations

4 errors and 1 warning
usage of an `Arc` that is not `Send` or `Sync`: core/tauri-runtime-wry/src/lib.rs#L2806
error: usage of an `Arc` that is not `Send` or `Sync` --> core/tauri-runtime-wry/src/lib.rs:2806:14 | 2806 | inner: Arc::new(webview), | ^^^^^^^^^^^^^^^^^ | = note: the trait `Send` is not implemented for `WebView` = note: the trait `Sync` is not implemented for `WebView` = note: required for `Arc<WebView>` to implement `Send` and `Sync` = help: consider using an `Rc` instead or wrapping the inner type with a `Mutex` = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#arc_with_non_send_sync
usage of an `Arc` that is not `Send` or `Sync`: core/tauri-runtime-wry/src/lib.rs#L1819
error: usage of an `Arc` that is not `Send` or `Sync` --> core/tauri-runtime-wry/src/lib.rs:1819:19 | 1819 | let windows = Arc::new(RefCell::new(HashMap::default())); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: the trait `Send` is not implemented for `RefCell<HashMap<u64, WindowWrapper>>` = note: the trait `Sync` is not implemented for `RefCell<HashMap<u64, WindowWrapper>>` = note: required for `Arc<RefCell<HashMap<u64, WindowWrapper>>>` to implement `Send` and `Sync` = help: consider using an `Rc` instead or wrapping the inner type with a `Mutex` = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#arc_with_non_send_sync = note: `-D clippy::arc-with-non-send-sync` implied by `-D warnings`
usage of an `Arc` that is not `Send` or `Sync`: core/tauri-runtime-wry/src/lib.rs#L2806
error: usage of an `Arc` that is not `Send` or `Sync` --> core/tauri-runtime-wry/src/lib.rs:2806:14 | 2806 | inner: Arc::new(webview), | ^^^^^^^^^^^^^^^^^ | = note: the trait `Send` is not implemented for `WebView` = note: the trait `Sync` is not implemented for `WebView` = note: required for `Arc<WebView>` to implement `Send` and `Sync` = help: consider using an `Rc` instead or wrapping the inner type with a `Mutex` = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#arc_with_non_send_sync
usage of an `Arc` that is not `Send` or `Sync`: core/tauri-runtime-wry/src/lib.rs#L1819
error: usage of an `Arc` that is not `Send` or `Sync` --> core/tauri-runtime-wry/src/lib.rs:1819:19 | 1819 | let windows = Arc::new(RefCell::new(HashMap::default())); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: the trait `Send` is not implemented for `RefCell<HashMap<u64, WindowWrapper>>` = note: the trait `Sync` is not implemented for `RefCell<HashMap<u64, WindowWrapper>>` = note: required for `Arc<RefCell<HashMap<u64, WindowWrapper>>>` to implement `Send` and `Sync` = help: consider using an `Rc` instead or wrapping the inner type with a `Mutex` = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#arc_with_non_send_sync = note: `-D clippy::arc-with-non-send-sync` implied by `-D warnings`
check
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/