1
0
Fork 0
mirror of synced 2024-07-04 14:01:27 +12:00

Deny only when usage quota is exceeded

This commit is contained in:
Rory Powell 2021-10-04 14:07:10 +01:00
parent 685fc49b01
commit c3a95d6c03

View file

@ -58,7 +58,7 @@ exports.update = async (property, usage) => {
// increment the quota
quota.usageQuota[property] += usage
if (quota.usageQuota[property] >= quota.usageLimits[property]) {
if (quota.usageQuota[property] > quota.usageLimits[property]) {
throw new Error(
`You have exceeded your usage quota of ${quota.usageLimits[property]} ${property}.`
)