mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-08-04 04:59:40 +00:00
allow subscribers to buy their final monthly gem (#10331)
This commit is contained in:
parent
ac451bdb9b
commit
8470f16f4f
1 changed files with 1 additions and 1 deletions
|
|
@ -49,7 +49,7 @@ export class BuyGemOperation extends AbstractGoldItemOperation {
|
|||
throw new NotAuthorized(this.i18n('reachedGoldToGemCap', {convCap: this.convCap}));
|
||||
}
|
||||
|
||||
if (user.purchased.plan.gemsBought + this.quantity >= this.convCap) {
|
||||
if (user.purchased.plan.gemsBought + this.quantity > this.convCap) {
|
||||
throw new NotAuthorized(this.i18n('reachedGoldToGemCapQuantity', {
|
||||
convCap: this.convCap,
|
||||
quantity: this.quantity,
|
||||
|
|
|
|||
Loading…
Reference in a new issue