Unread RSS Feed Limit of 200 on self-hosted install

So if you run MStory.objects.filter(story_feed_id=150).count() is the number 500 or much higher? I don’t see anywhere in those logs that stories are being deleted, so perhaps it’s just that the unread count is being limited artificially.

1 Like

image

Then why does it show 500? How can I fix this? Tell me please.

Ah-ha, found the issue. You’ll want to change this line in apps/reader/models.py:

    def story_hashes(cls, user_id, feed_ids=None, usersubs=None, read_filter="unread", order="newest", 
                     include_timestamps=False, group_by_feed=False, cutoff_date=None,
                     across_all_feeds=True, store_stories_key=None, offset=0, limit=500):
1 Like

image
That’s great!
Thank you very much!