fix: Windows

This commit is contained in:
sxyazi 2023-12-12 02:07:49 +08:00
parent 47bf040e4d
commit 513d4504d0
No known key found for this signature in database

View file

@ -41,7 +41,7 @@ impl Clipboard {
let result = tokio::task::spawn_blocking(|| get_clipboard::<String, _>(formats::Unicode));
if let Ok(Ok(s)) = result.await {
return s;
return s.into();
}
self.content.clone()