mirror of
https://github.com/0PandaDEV/Qopy.git
synced 2025-04-22 05:34:04 +02:00
fix(sync): correct webhook listener Arc cloning
This commit is contained in:
parent
1012ecb1e3
commit
f1b745c289
1 changed files with 1 additions and 1 deletions
|
@ -108,7 +108,7 @@ async fn main() {
|
|||
let app_handle_clone = app_handle.clone();
|
||||
tauri::async_runtime::spawn(async move {
|
||||
let sync = clipboard_sync_clone.lock().await;
|
||||
sync.listen_webhook(app_handle_clone, clipboard_sync_clone).await;
|
||||
sync.listen_webhook(app_handle_clone, clipboard_sync_arc.clone()).await;
|
||||
});
|
||||
|
||||
utils::commands::center_window_on_current_monitor(main_window.as_ref().unwrap());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue