From 352eedf7c1bd90b88fc05a7a36e39a26c86acafa Mon Sep 17 00:00:00 2001 From: Conor Macpherson Date: Mon, 5 Dec 2022 14:53:38 -0500 Subject: [PATCH] Fix app error id. --- api4/cloud.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api4/cloud.go b/api4/cloud.go index 0dd56c3055..7f4a013047 100644 --- a/api4/cloud.go +++ b/api4/cloud.go @@ -141,7 +141,7 @@ func changeSubscription(c *Context, w http.ResponseWriter, r *http.Request) { changedProduct, err := c.App.Cloud().GetCloudProduct(userId, changedSub.ProductID) if err != nil { - c.Err = model.NewAppError("Api4.changeSubscription", "api_cloud.app_error", nil, "", http.StatusInternalServerError).Wrap(err) + c.Err = model.NewAppError("Api4.changeSubscription", "api.cloud.app_error", nil, "", http.StatusInternalServerError).Wrap(err) } starterSku := fmt.Sprintf("%s-%s", model.SubscriptionFamilyCloud, model.ProductSkuStarter)