From baaa8d8d95609e9d2d1b7857ab155e900d29e35b Mon Sep 17 00:00:00 2001 From: Colton Hurst Date: Tue, 17 Jun 2025 15:21:01 -0400 Subject: [PATCH] [PM-19255] Manifest file updates --- apps/desktop/custom-appx-manifest.xml | 6 +++--- .../windows_plugin_authenticator/src/pluginauthenticator.rs | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/desktop/custom-appx-manifest.xml b/apps/desktop/custom-appx-manifest.xml index 48379eca674..44ad4c2eaea 100644 --- a/apps/desktop/custom-appx-manifest.xml +++ b/apps/desktop/custom-appx-manifest.xml @@ -87,8 +87,8 @@ xmlns:build="http://schemas.microsoft.com/developer/appx/2015/build"> - + @@ -114,7 +114,7 @@ xmlns:build="http://schemas.microsoft.com/developer/appx/2015/build"> - + diff --git a/apps/desktop/desktop_native/windows_plugin_authenticator/src/pluginauthenticator.rs b/apps/desktop/desktop_native/windows_plugin_authenticator/src/pluginauthenticator.rs index 6cc08a6ac2f..d33fa33ca97 100644 --- a/apps/desktop/desktop_native/windows_plugin_authenticator/src/pluginauthenticator.rs +++ b/apps/desktop/desktop_native/windows_plugin_authenticator/src/pluginauthenticator.rs @@ -84,7 +84,7 @@ impl EXPERIMENTAL_IPluginAuthenticator_Impl for PluginAuthenticatorComObject_Imp request: *const ExperimentalWebAuthnPluginOperationRequest, response: *mut *mut ExperimentalWebAuthnPluginOperationResponse, ) -> HRESULT { - panic!("EXPERIMENTAL_PluginMakeCredential() called"); + //panic!("EXPERIMENTAL_PluginMakeCredential() called"); util::message(String::from("EXPERIMENTAL_PluginMakeCredential() called")); HRESULT(0) } @@ -94,7 +94,7 @@ impl EXPERIMENTAL_IPluginAuthenticator_Impl for PluginAuthenticatorComObject_Imp request: *const ExperimentalWebAuthnPluginOperationRequest, response: *mut *mut ExperimentalWebAuthnPluginOperationResponse, ) -> HRESULT { - panic!("EXPERIMENTAL_PluginGetAssertion() called"); + //panic!("EXPERIMENTAL_PluginGetAssertion() called"); util::message(String::from("EXPERIMENTAL_PluginGetAssertion() called")); HRESULT(0) } @@ -103,7 +103,7 @@ impl EXPERIMENTAL_IPluginAuthenticator_Impl for PluginAuthenticatorComObject_Imp &self, request: *const ExperimentalWebAuthnPluginCancelOperationRequest, ) -> HRESULT { - panic!("EXPERIMENTAL_PluginCancelOperation() called"); + //panic!("EXPERIMENTAL_PluginCancelOperation() called"); util::message(String::from("EXPERIMENTAL_PluginCancelOperation() called")); HRESULT(0) }