diff --git a/backend/src/Squidex.Domain.Apps.Entities/Apps/DomainObject/AppDomainObject.cs b/backend/src/Squidex.Domain.Apps.Entities/Apps/DomainObject/AppDomainObject.cs index 70dfb343c..611d97f8e 100644 --- a/backend/src/Squidex.Domain.Apps.Entities/Apps/DomainObject/AppDomainObject.cs +++ b/backend/src/Squidex.Domain.Apps.Entities/Apps/DomainObject/AppDomainObject.cs @@ -264,7 +264,7 @@ namespace Squidex.Domain.Apps.Entities.Apps.DomainObject }, ct); case ChangePlan changePlan: - return ChangePlanAsync(changePlan, ct); + return ChangeBillingPlanAsync(changePlan, ct); default: ThrowHelper.NotSupportedException(); @@ -272,7 +272,7 @@ namespace Squidex.Domain.Apps.Entities.Apps.DomainObject } } - private async Task ChangePlanAsync(ChangePlan changePlan, + private async Task ChangeBillingPlanAsync(ChangePlan changePlan, CancellationToken ct) { var userId = changePlan.Actor.Identifier;