mirror of
https://github.com/discourse/discourse.git
synced 2025-02-12 22:34:57 +00:00
It also removes the redundant `filter` parameter. Previously URLs looked like this: ``` http://example.com/tags/c/some-category/muted-tag/l/latest.json?filter=tags/c/some-category/muted-tag/l/latest ``` But it looks like the `filter` parameter was only used to find out if topics with a muted tag should be removed or not. But the same thing can be accomplished by using the first tag ID. The following URL looks a lot cleaner. ``` http://example.com/tags/c/some-category/muted-tag/l/latest.json ```