aboutsummaryrefslogtreecommitdiff
path: root/newspipe/controllers/feed.py
diff options
context:
space:
mode:
Diffstat (limited to 'newspipe/controllers/feed.py')
-rw-r--r--newspipe/controllers/feed.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/newspipe/controllers/feed.py b/newspipe/controllers/feed.py
index 8a1b6b0b..72f9b180 100644
--- a/newspipe/controllers/feed.py
+++ b/newspipe/controllers/feed.py
@@ -98,9 +98,9 @@ class FeedController(AbstractController):
from .article import ArticleController
self._ensure_icon(attrs)
- if "category_id" in attrs and attrs["category_id"] == 0:
- del attrs["category_id"]
- elif "category_id" in attrs:
+ # if "category_id" in attrs and attrs["category_id"] == 0:
+ # del attrs["category_id"]
+ if "category_id" in attrs:
art_contr = ArticleController(self.user_id)
for feed in self.read(**filters):
art_contr.update(
bgstack15