merchant

Merchant backend to process payments, run by merchants
Log | Files | Refs | Submodules | README | LICENSE

commit 3577c4d18830219d83ec1ba4ef9d35480a2db787
parent 7d81706ca0d905a2d7e8c7c18a6e2d48d0a67bae
Author: Florian Dold <florian.dold@gmail.com>
Date:   Thu,  8 Oct 2020 20:54:23 +0530

replace location to avoid history loop

Diffstat:
Mcontrib/offer_refund.en.must | 2+-
Mcontrib/offer_tip.en.must | 2+-
Mcontrib/request_payment.en.must | 6+++---
3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/contrib/offer_refund.en.must b/contrib/offer_refund.en.must @@ -100,7 +100,7 @@ body { try { let resp = JSON.parse(req.responseText); if (! resp.refund_pending) { - document.location.reload(true); + window.location.reload(true); } } catch (e) { console.error("could not parse response:", e); diff --git a/contrib/offer_tip.en.must b/contrib/offer_tip.en.must @@ -96,7 +96,7 @@ body { req.onreadystatechange = function () { if (req.readyState === XMLHttpRequest.DONE) { if (req.status === 410) { - document.location.reload(true); + window.location.reload(true); } setTimeout(check, delayMs); } diff --git a/contrib/request_payment.en.must b/contrib/request_payment.en.must @@ -98,7 +98,7 @@ body { if (req.readyState === XMLHttpRequest.DONE) { if (req.status === 200) { try { - document.location.reload(true); + window.location.reload(true); } catch (e) { console.error("could not parse response:", e); } @@ -107,7 +107,7 @@ body { try { let resp = JSON.parse(req.responseText); if (resp.fulfillment_url) { - window.location = resp.fulfillment_url; + window.location.replace(resp.fulfillment_url); } } catch (e) { console.error("could not parse response:", e); @@ -117,7 +117,7 @@ body { try { let resp = JSON.parse(req.responseText); if (resp.already_paid_order_id && resp.fulfillment_url) { - window.location = resp.fulfillment_url; + window.location.replace(resp.fulfillment_url); } } catch (e) { console.error("could not parse response:", e);