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) }