mirror of
https://github.com/linux-do/new-api.git
synced 2025-09-23 10:26:38 +08:00
feat: 统计无限令牌的已用额度 (close #308)
This commit is contained in:
parent
eb382d28ab
commit
752048dfb4
@ -272,15 +272,13 @@ func PostConsumeTokenQuota(tokenId int, userQuota int, quota int, preConsumedQuo
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
if !token.UnlimitedQuota {
|
if quota > 0 {
|
||||||
if quota > 0 {
|
err = DecreaseTokenQuota(tokenId, quota)
|
||||||
err = DecreaseTokenQuota(tokenId, quota)
|
} else {
|
||||||
} else {
|
err = IncreaseTokenQuota(tokenId, -quota)
|
||||||
err = IncreaseTokenQuota(tokenId, -quota)
|
}
|
||||||
}
|
if err != nil {
|
||||||
if err != nil {
|
return err
|
||||||
return err
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if sendEmail {
|
if sendEmail {
|
||||||
|
Loading…
Reference in New Issue
Block a user