summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--talermerchantdemos/blog/blog.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/talermerchantdemos/blog/blog.py b/talermerchantdemos/blog/blog.py
index 3074f91..a0761b4 100644
--- a/talermerchantdemos/blog/blog.py
+++ b/talermerchantdemos/blog/blog.py
@@ -483,7 +483,7 @@ def article(article_name, lang=None, data=None):
# In this case, we can now redirect the browser to the URL that
# triggers the wallet.
- if flask.request.cookies.get("order_id") and order_status != "paid":
+ if flask.request.cookies.get("order_id"):
LOGGER.info("Redirecting (with order_id cookies) to", redirect_url)
return flask.redirect(redirect_url)