FIX: process locked script

This commit is contained in:
Overtorment 2020-05-06 13:00:33 +01:00
parent 963348102d
commit 9df3ce249b

View File

@ -105,6 +105,10 @@ export class Paym {
this._isPaid = false;
}
if (payment.payment_error && payment.payment_error.indexOf('IncorrectOrUnknownPaymentDetails') !== -1) {
this._isPaid = false;
}
if (payment.payment_error && payment.payment_error.indexOf('payment is in transition') !== -1) {
this._isPaid = null; // null is default, but lets set it anyway
}