From e8cc9b4ecdbd32cadd593cf00b0e949f2954f91f Mon Sep 17 00:00:00 2001 From: mrhid6 Date: Sun, 26 Jul 2026 15:16:02 +0100 Subject: [PATCH] fix: Fixed misleading error message when license on cloud --- server/internal/api/licence.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/internal/api/licence.go b/server/internal/api/licence.go index a4386e0..d6ab498 100644 --- a/server/internal/api/licence.go +++ b/server/internal/api/licence.go @@ -200,7 +200,7 @@ func licenceRejectionMessage(reason, instanceID string) string { case license.ReasonBadSignature: return "This licence key is not valid. Check it was copied in full." case license.ReasonDeploymentMismatch: - return "This licence is for Vantage Cloud and cannot be used on a self-hosted install." + return "This licence was issued for a different instance type." case license.ReasonInstanceMismatch: return "This licence was issued for a different instance. Your instance ID is " + instanceID + "." case license.ReasonNoLicense: