aboutsummaryrefslogtreecommitdiff
path: root/instance/sqlite.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-11 09:51:57 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-11 09:51:57 +0100
commit2992eced7e449e8ace4840384c20be6564358fab (patch)
tree8d183398a8fb644df23b568ca9b34b3e034a31b2 /instance/sqlite.py
parentUpdated README. (diff)
downloadnewspipe-2992eced7e449e8ace4840384c20be6564358fab.tar.gz
newspipe-2992eced7e449e8ace4840384c20be6564358fab.tar.bz2
newspipe-2992eced7e449e8ace4840384c20be6564358fab.zip
Updated README.
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 b307eaca..fd6438cb 100644
--- a/instance/sqlite.py
+++ b/instance/sqlite.py
@@ -20,7 +20,7 @@ SQLALCHEMY_DATABASE_URI = "sqlite:///newspipe.db"
# Crawler
CRAWLING_METHOD = "default"
-DEFAULT_MAX_ERROR = 3
+DEFAULT_MAX_ERROR = 6
HTTP_PROXY = ""
CRAWLER_USER_AGENT = "Newspipe (https://git.sr.ht/~cedric/newspipe)"
CRAWLER_TIMEOUT = 30
bgstack15