From db6f46f165d470cbd15520dd398e86093f544c6b Mon Sep 17 00:00:00 2001 From: rustdesk Date: Thu, 3 Mar 2022 20:25:23 +0800 Subject: [PATCH] fix cpu burning issue --- src/ui/remote.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/remote.rs b/src/ui/remote.rs index 0f72ae62f..0d2514b32 100644 --- a/src/ui/remote.rs +++ b/src/ui/remote.rs @@ -1312,7 +1312,7 @@ impl Remote { // just build for now #[cfg(not(windows))] - let (_, mut rx_clip_client) = mpsc::unbounded_channel::(); + let (_tx_holder, mut rx_clip_client) = mpsc::unbounded_channel::(); #[cfg(windows)] let mut rx_clip_client = get_rx_clip_client().lock().await;