mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2025-01-01 21:08:42 +00:00
Select subclasses in rss feed
This commit is contained in:
parent
a5ee535ab6
commit
c7d8548614
1 changed files with 4 additions and 1 deletions
|
@ -27,7 +27,10 @@ class RssFeed(Feed):
|
||||||
def items(self, obj):
|
def items(self, obj):
|
||||||
''' the user's activity feed '''
|
''' the user's activity feed '''
|
||||||
return get_activity_feed(
|
return get_activity_feed(
|
||||||
obj, privacy=['public', 'unlisted'], queryset=obj.status_set)
|
obj,
|
||||||
|
privacy=['public', 'unlisted'],
|
||||||
|
queryset=obj.status_set.select_subclasses()
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
def item_link(self, item):
|
def item_link(self, item):
|
||||||
|
|
Loading…
Reference in a new issue