aboutsummaryrefslogtreecommitdiff
path: root/instance/sqlite.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-29 22:48:15 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-29 22:48:15 +0200
commit4b8e533cd591c67ad47d4e8be37e27fbd51af09a (patch)
tree99005e909567183c2c64c66560e0bebb10d897bd /instance/sqlite.py
parentset DEBUG to True also when SQLite is used. (diff)
downloadnewspipe-4b8e533cd591c67ad47d4e8be37e27fbd51af09a.tar.gz
newspipe-4b8e533cd591c67ad47d4e8be37e27fbd51af09a.tar.bz2
newspipe-4b8e533cd591c67ad47d4e8be37e27fbd51af09a.zip
Minor fixes to the crawler.
Diffstat (limited to 'instance/sqlite.py')
-rw-r--r--instance/sqlite.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/instance/sqlite.py b/instance/sqlite.py
index 18b906dd..60047080 100644
--- a/instance/sqlite.py
+++ b/instance/sqlite.py
@@ -42,7 +42,7 @@ CRAWLER_USER_AGENT = "Newspipe (https://git.sr.ht/~cedric/newspipe)"
CRAWLER_TIMEOUT = 30
CRAWLER_RESOLV = False
RESOLVE_ARTICLE_URL = False
-FEED_REFRESH_INTERVAL = 120
+FEED_REFRESH_INTERVAL = 0
# Notification
MAIL_SERVER = "localhost"
bgstack15