From c69f4ba4a2fa28ae2fb60739db9f39ea3ad384dd Mon Sep 17 00:00:00 2001
From: rustdesk <info@rustdesk.com>
Date: Mon, 6 Nov 2023 20:36:03 +0800
Subject: [PATCH] fix ci

---
 src/ui_session_interface.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/ui_session_interface.rs b/src/ui_session_interface.rs
index 83c59dbf4..b5ec529a4 100644
--- a/src/ui_session_interface.rs
+++ b/src/ui_session_interface.rs
@@ -1337,7 +1337,7 @@ impl<T: InvokeUiSession> Interface for Session<T> {
         #[cfg(windows)]
         {
             let mut path = std::env::temp_dir();
-            path.push(&self.id);
+            path.push(self.get_id());
             let path = path.with_extension(crate::get_app_name().to_lowercase());
             std::fs::File::create(&path).ok();
             if let Some(path) = path.to_str() {