From 62f048767cce0c55f40efa706db133a6861e4a10 Mon Sep 17 00:00:00 2001 From: Dominik Pschenitschni <6173598+dpschen@users.noreply.github.com> Date: Tue, 10 Jun 2025 12:18:07 +0200 Subject: [PATCH] fix: correct unknown subscription entity typo (#883) --- pkg/models/error.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/models/error.go b/pkg/models/error.go index 59bec8242..38b31a22b 100644 --- a/pkg/models/error.go +++ b/pkg/models/error.go @@ -1776,7 +1776,7 @@ func IsErrUnknownSubscriptionEntityType(err error) bool { } func (err *ErrUnknownSubscriptionEntityType) Error() string { - return fmt.Sprintf("Subscription entity type is unkowns [EntityType: %d]", err.EntityType) + return fmt.Sprintf("Subscription entity type is unknown [EntityType: %d]", err.EntityType) } // ErrCodeUnknownSubscriptionEntityType holds the unique world-error code of this error