From 99cb29553a331f78c1f31fb9106d5b7b8354ceb5 Mon Sep 17 00:00:00 2001 From: Colton Hurst Date: Wed, 30 Apr 2025 18:01:26 -0400 Subject: [PATCH] PM-19255: clsid needs to be wrapped in brackets --- .../desktop_native/windows_plugin_authenticator/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/desktop/desktop_native/windows_plugin_authenticator/src/lib.rs b/apps/desktop/desktop_native/windows_plugin_authenticator/src/lib.rs index 24b4ee0f97e..282e752c343 100644 --- a/apps/desktop/desktop_native/windows_plugin_authenticator/src/lib.rs +++ b/apps/desktop/desktop_native/windows_plugin_authenticator/src/lib.rs @@ -97,7 +97,7 @@ pub fn register() -> std::result::Result<(), String> { &mut credential_details; std::mem::forget(credential_details); - let mut clsid_string = String::from(CLSID); + let mut clsid_string = String::from(format!("{{{}}}",CLSID)); let mut clsid_vec: Vec = clsid_string.encode_utf16().collect(); clsid_vec.push(0); let plugin_clsid: *mut u16 = clsid_vec.as_mut_ptr();