summaryrefslogtreecommitdiffstats
path: root/askbot/feed.py
diff options
context:
space:
mode:
Diffstat (limited to 'askbot/feed.py')
-rw-r--r--askbot/feed.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/askbot/feed.py b/askbot/feed.py
index 7f41fd4f..d7a3d513 100644
--- a/askbot/feed.py
+++ b/askbot/feed.py
@@ -155,7 +155,7 @@ class RssLastestQuestionsFeed(Feed):
for tag in tags:
qs = qs.filter(tags__name = tag)
- return qs.order_by('-last_activity_at')[:30]
+ return qs.order_by('-thread__last_activity_at')[:30]