I’d like to get an rss feed only for the unanswered topics with a tag e.g. https://meta.discourse.org/tag/unsupported-install?max_posts=1
Is that possible?
Tried https://meta.discourse.org/tag/unsupported-install.rss?max_posts=1 but the unanswered filter wasn’t added.
I’m afraid it show the right items in the feed though.
This one is fine https://meta.discourse.org/latest?max_posts=1&tags=unsupported-install - it shows the right topics:
But the rss version https://meta.discourse.org/latest.rss?max_posts=1&tags=unsupported-installseems to not respect tags=unsupported-install - it shows all from latest.
While looking into this I discovered that the .rss routes don’t actually call the same backend code as the .json routes do so this is why the behavior is a bit different and was ignoring the query parameters. I’m not actually sure they the .rss routes are different, but my change makes sure that the /latest.rss route will take into account any query parameters. If there are any other .rss routes you are hitting we may need to update those as well.