fix: at least one charge must be active in order to fetch balance

This commit is contained in:
Vlad Stan 2022-07-12 10:44:42 +03:00
parent f9fd071315
commit 809d03d3db
2 changed files with 18 additions and 11 deletions

View File

@ -49,7 +49,6 @@ class Charges(BaseModel):
def time_elapsed(self):
return self.time_left < 0
@property
def paid(self):
if self.balance >= self.amount:

View File

@ -128,6 +128,7 @@
<q-td key="timeLeft" :props="props" :class="">
<div>{{props.row.timeLeft}}</div>
<q-linear-progress
v-if="props.row.timeLeft"
:value="props.row.progress"
color="secondary"
>
@ -580,16 +581,23 @@
this.createCharge(wallet, data)
},
refreshActiveChargesBalance: async function () {
const activeLinkIds = this.chargeLinks
.filter(c => !c.paid && !c.time_elapsed && !c.hasStaleBalance)
.map(c => c.id)
.join(',')
await LNbits.api.request(
'GET',
'/satspay/api/v1/charges/balance/' + activeLinkIds,
'filla'
)
await this.getCharges()
try {
const activeLinkIds = this.chargeLinks
.filter(c => !c.paid && !c.time_elapsed && !c.hasStaleBalance)
.map(c => c.id)
.join(',')
if (activeLinkIds) {
await LNbits.api.request(
'GET',
'/satspay/api/v1/charges/balance/' + activeLinkIds,
'filla'
)
}
} catch (error) {
LNbits.utils.notifyApiError(error)
} finally {
await this.getCharges()
}
},
refreshBalance: async function (charge) {
try {