aboutsummaryrefslogtreecommitdiff
path: root/instance/sqlite.py
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/sqlite.py
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/sqlite.py')
-rw-r--r--instance/sqlite.py3
1 files changed, 1 insertions, 2 deletions
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