From bbd93832e2842b856c121ca67a57a94615294300 Mon Sep 17 00:00:00 2001 From: h7x4 Date: Thu, 4 Dec 2025 13:08:57 +0900 Subject: [PATCH] fixup! client: add error subtypes for name and owner validation in json output --- src/core/protocol/commands/check_authorization.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/core/protocol/commands/check_authorization.rs b/src/core/protocol/commands/check_authorization.rs index d25481a..f632700 100644 --- a/src/core/protocol/commands/check_authorization.rs +++ b/src/core/protocol/commands/check_authorization.rs @@ -86,8 +86,7 @@ impl CheckAuthorizationError { } CheckAuthorizationError::OwnershipError(err) => { format!("ownership-error/{}", err.error_type()) - } - // CheckAuthorizationError::AuthorizationHandlerError(_) => "authorization-handler-error".to_string(), + } // CheckAuthorizationError::AuthorizationHandlerError(_) => "authorization-handler-error".to_string(), } } }