From 88072a334f14f80f560b92bd0d9de5a725c0a2f6 Mon Sep 17 00:00:00 2001 From: rustdesk Date: Mon, 20 Mar 2023 09:36:36 +0800 Subject: [PATCH] fix ci #3328 --- src/common.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common.rs b/src/common.rs index 489f5c165..7bdfd9012 100644 --- a/src/common.rs +++ b/src/common.rs @@ -809,7 +809,7 @@ pub async fn get_key(sync: bool) -> String { }; if key.is_empty() { #[cfg(windows)] - if let Some(lic) = windows::get_license() { + if let Some(lic) = crate::platform::windows::get_license() { return lic.key; } }