From eb709254d22fe73685cdd5c8c56910064db1b4bc Mon Sep 17 00:00:00 2001 From: Alan Shaw Date: Sun, 27 Oct 2024 11:58:25 +0000 Subject: [PATCH] fix: IPLD type for InvocationCapabilityError --- server/datamodel/errors.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/datamodel/errors.go b/server/datamodel/errors.go index 6e4a205..f524cbb 100644 --- a/server/datamodel/errors.go +++ b/server/datamodel/errors.go @@ -53,7 +53,7 @@ type HandlerExecutionErrorModel struct { } func InvocationCapabilityErrorType() schema.Type { - return errorTypeSystem.TypeByName("HandlerExecutionError") + return errorTypeSystem.TypeByName("InvocationCapabilityError") } type InvocationCapabilityErrorModel struct {