mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-02 06:20:29 +00:00
zen: fix go plan usage limit
This commit is contained in:
parent
f2100dcfd8
commit
8c739b4a7d
1 changed files with 3 additions and 3 deletions
|
|
@ -654,12 +654,12 @@ export async function handler(
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check rolling limit
|
// Check rolling limit
|
||||||
if (sub.monthlyUsage && sub.timeMonthlyUpdated) {
|
if (sub.rollingUsage && sub.timeRollingUpdated) {
|
||||||
const result = Subscription.analyzeRollingUsage({
|
const result = Subscription.analyzeRollingUsage({
|
||||||
limit: liteData.rollingLimit,
|
limit: liteData.rollingLimit,
|
||||||
window: liteData.rollingWindow,
|
window: liteData.rollingWindow,
|
||||||
usage: sub.monthlyUsage,
|
usage: sub.rollingUsage,
|
||||||
timeUpdated: sub.timeMonthlyUpdated,
|
timeUpdated: sub.timeRollingUpdated,
|
||||||
})
|
})
|
||||||
if (result.status === "rate-limited")
|
if (result.status === "rate-limited")
|
||||||
throw new SubscriptionUsageLimitError(
|
throw new SubscriptionUsageLimitError(
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue