aboutsummaryrefslogtreecommitdiff
path: root/source/mongodb.py
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-04-01 23:47:01 +0200
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-04-01 23:47:01 +0200
commit9f84c3947adf66bf1d0f8fad941ff717ab805585 (patch)
tree4a9d3739972f1ac30a7caba033251abe0bbabc21 /source/mongodb.py
parentIf feed id is not valid, return directly the error page. (diff)
downloadnewspipe-9f84c3947adf66bf1d0f8fad941ff717ab805585.tar.gz
newspipe-9f84c3947adf66bf1d0f8fad941ff717ab805585.tar.bz2
newspipe-9f84c3947adf66bf1d0f8fad941ff717ab805585.zip
Test if ids of the feed/articles exists.
Diffstat (limited to 'source/mongodb.py')
-rw-r--r--source/mongodb.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/mongodb.py b/source/mongodb.py
index 38081780..f0aa730a 100644
--- a/source/mongodb.py
+++ b/source/mongodb.py
@@ -134,7 +134,7 @@ class Articles(object):
try:
return next(collection.find({"article_id":article_id}))
except:
- return False
+ return []
def get_favorites(self, feed_id=None):
"""
bgstack15