[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[GNUnet-SVN] [taler-blog] branch master updated: correctly re-schedule s
From: |
gnunet |
Subject: |
[GNUnet-SVN] [taler-blog] branch master updated: correctly re-schedule status check on error |
Date: |
Tue, 27 Aug 2019 03:04:01 +0200 |
This is an automated email from the git hooks/post-receive script.
dold pushed a commit to branch master
in repository blog.
The following commit(s) were added to refs/heads/master by this push:
new 30c9711 correctly re-schedule status check on error
30c9711 is described below
commit 30c97118a6c7ec918cb9a4114a7c9d2470662342
Author: Florian Dold <address@hidden>
AuthorDate: Tue Aug 27 03:03:58 2019 +0200
correctly re-schedule status check on error
---
talerblog/blog/templates/request_payment.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/talerblog/blog/templates/request_payment.html
b/talerblog/blog/templates/request_payment.html
index f138877..6e050d0 100644
--- a/talerblog/blog/templates/request_payment.html
+++ b/talerblog/blog/templates/request_payment.html
@@ -15,7 +15,7 @@
function check() {
let req = new XMLHttpRequest();
req.onreadystatechange = function () {
- if (req.readyState === XMLHttpRequest.DONE && req.status === 200) {
+ if (req.readyState === XMLHttpRequest.DONE) {
if (req.status === 200) {
try {
let resp = JSON.parse(req.responseText);
--
To stop receiving notification emails like this one, please contact
address@hidden.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [GNUnet-SVN] [taler-blog] branch master updated: correctly re-schedule status check on error,
gnunet <=