aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMunyoki Kilyungi2023-11-06 16:50:34 +0300
committerBonfaceKilz2023-11-06 16:52:20 +0300
commita05688146c4f06e95b6f301cc30efc05053a810d (patch)
tree868c27d04d863b43ebce4a7090040f1dfb94d95f
parentb178e8f8944141632032103fb5b06e3a0746d4f3 (diff)
downloadgenenetwork2-a05688146c4f06e95b6f301cc30efc05053a810d.tar.gz
Revert "Disable SSL check when checking whether user is logged in."
This reverts commit b178e8f8944141632032103fb5b06e3a0746d4f3.
-rw-r--r--wqflask/wqflask/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/wqflask/views.py b/wqflask/wqflask/views.py
index 64779cbe..32b7627f 100644
--- a/wqflask/wqflask/views.py
+++ b/wqflask/wqflask/views.py
@@ -164,7 +164,7 @@ def index_page():
anon_id=anon_id)
return no_token_get(
- f"auth/user/collections/{anon_id}/list", verify=False).either(
+ f"auth/user/collections/{anon_id}/list").either(
lambda err: __render__([]),
__render__)