Projet

Général

Profil

0001-lingo-display-transaction-status-non-error-message-4.patch

Serghei Mihai (congés, retour 15/05), 09 octobre 2020 11:47

Télécharger (1,06 ko)

Voir les différences:

Subject: [PATCH] lingo: display transaction status non error message (#47511)

 combo/apps/lingo/templates/lingo/combo/payment-status.html | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
combo/apps/lingo/templates/lingo/combo/payment-status.html
27 27
                } else if (data.error) {
28 28
                    display_error(data.error_msg)
29 29
                } else {
30
                    setTimeout(wait_payment, 3000, next_url, transaction_id);
30
                    display_error(data.error_msg);
31
                    setTimeout(function(){location.href=next_url}, 3000);
31 32
                }
32 33
            },
33 34
            error: function(error) {
34
-