aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsource/pyAggr3g470r.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/source/pyAggr3g470r.py b/source/pyAggr3g470r.py
index 2fac78e0..83834853 100755
--- a/source/pyAggr3g470r.py
+++ b/source/pyAggr3g470r.py
@@ -992,10 +992,7 @@ class pyAggr3g470r(object):
# Mark an article as read.
elif param == "Article":
self.mongo.mark_as_read(True, identifiant.split(':')[1], identifiant.split(':')[0])
- if param == "" or param == "Feed_FromMainPage":
- return self.index()
- elif param == "Feed":
- return self.articles(identifiant)
+ return self.index()
mark_as_read.exposed = True
bgstack15