-
-
Notifications
You must be signed in to change notification settings - Fork 929
Closed
Labels
Description
Requirements
- Is this a bug report? For questions or discussions use https://lemmy.ml/c/lemmy_support or the matrix chat.
- Did you check to see if this issue already exists?
- Is this only a single bug? Do not put multiple bugs in one issue.
- Do you agree to follow the rules in our Code of Conduct?
- Is this a backend issue? Use the lemmy-ui repo for UI / frontend issues.
Summary
As mentioned in LemmyNet/lemmy-ui#3449, we cant assume that remote instances have RSS feeds available, so we need to serve all RSS feeds from the local domain. That means we need to support feeds like these:
/feeds/u/[email protected]?sort=New
/feeds/c/[email protected]?sort=New
In fact the first url is already generated by lemmy-ui when viewing a remote user profile and throws an error as feeds.rs doesnt split on @
and only looks for local users/communities.