summaryrefslogtreecommitdiff
path: root/app/posts
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf>2021-02-13 19:07:30 -0500
committerluxagraf <sng@luxagraf>2021-02-13 19:07:30 -0500
commitf02423e129970b1857c5a54e79c7046061ddd069 (patch)
treecc86c8ace678b00127ba8c6a6e34670f099cdc38 /app/posts
parent99b4cc2a755afe7fd2e772e76d6e5385a9440bd2 (diff)
src: dusted off RSS feed by popular demand
Diffstat (limited to 'app/posts')
-rw-r--r--app/posts/views/src_views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/posts/views/src_views.py b/app/posts/views/src_views.py
index c56b723..59c371c 100644
--- a/app/posts/views/src_views.py
+++ b/app/posts/views/src_views.py
@@ -65,7 +65,7 @@ class SrcRSSFeedView(Feed):
description_template = 'feeds/blog_description.html'
def items(self):
- return SrcPost.objects.filter(status__exact=1).order_by('-pub_date')[:10]
+ return Post.objects.filter(status__exact=1).filter(post_type=PostType.SRC).order_by('-pub_date')[:10]
"""