aboutsummaryrefslogtreecommitdiff
path: root/instance
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2020-12-10 22:48:09 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2020-12-10 22:48:09 +0100
commit816e5b77b8dd6ea8e26c307415d7eaa9ac4b5d08 (patch)
tree4e7deee0c3078cb826bd05c42fa544398b8b98e6 /instance
parentfixed navbar of the homepage for bootstrap_5.0.0-beta1 (diff)
downloadnewspipe-816e5b77b8dd6ea8e26c307415d7eaa9ac4b5d08.tar.gz
newspipe-816e5b77b8dd6ea8e26c307415d7eaa9ac4b5d08.tar.bz2
newspipe-816e5b77b8dd6ea8e26c307415d7eaa9ac4b5d08.zip
harmonize CRAWLER_RESOLVE_ARTICLE_URL configuration variable.
Diffstat (limited to 'instance')
-rw-r--r--instance/config.py3
-rw-r--r--instance/sqlite.py3
2 files changed, 2 insertions, 4 deletions
diff --git a/instance/config.py b/instance/config.py
index 8a3fdb6b..89655edf 100644
--- a/instance/config.py
+++ b/instance/config.py
@@ -48,8 +48,7 @@ DEFAULT_MAX_ERROR = 6
HTTP_PROXY = ""
CRAWLER_USER_AGENT = "Newspipe (https://git.sr.ht/~cedric/newspipe)"
CRAWLER_TIMEOUT = 30
-CRAWLER_RESOLV = False
-RESOLVE_ARTICLE_URL = False
+CRAWLER_RESOLVE_ARTICLE_URL = False
FEED_REFRESH_INTERVAL = 120
# Notification
diff --git a/instance/sqlite.py b/instance/sqlite.py
index 60047080..0fec8f3d 100644
--- a/instance/sqlite.py
+++ b/instance/sqlite.py
@@ -40,8 +40,7 @@ DEFAULT_MAX_ERROR = 6
HTTP_PROXY = ""
CRAWLER_USER_AGENT = "Newspipe (https://git.sr.ht/~cedric/newspipe)"
CRAWLER_TIMEOUT = 30
-CRAWLER_RESOLV = False
-RESOLVE_ARTICLE_URL = False
+CRAWLER_RESOLVE_ARTICLE_URL = False
FEED_REFRESH_INTERVAL = 0
# Notification
bgstack15