diff --git a/controller/billing.go b/controller/billing.go index 7bc63425..559d5e67 100644 --- a/controller/billing.go +++ b/controller/billing.go @@ -32,6 +32,9 @@ func GetSubscription(c *gin.Context) { if common.DisplayInCurrencyEnabled { amount /= common.QuotaPerUnit } + if token.UnlimitedQuota { + amount = 99999999.9999 + } subscription := OpenAISubscriptionResponse{ Object: "billing_subscription", HasPaymentMethod: true,