diff --git a/src/shared/components/community/community.tsx b/src/shared/components/community/community.tsx index cdab971c..db56bcce 100644 --- a/src/shared/components/community/community.tsx +++ b/src/shared/components/community/community.tsx @@ -354,6 +354,10 @@ export class Community extends Component { } selects() { + let communityRss = communityRSSUrl( + this.state.communityRes.community_view.community.actor_id, + this.state.sort + ); return (
@@ -365,16 +369,10 @@ export class Community extends Component { - + +
); } diff --git a/src/shared/components/home/home.tsx b/src/shared/components/home/home.tsx index d64a8528..5d430a6b 100644 --- a/src/shared/components/home/home.tsx +++ b/src/shared/components/home/home.tsx @@ -669,6 +669,12 @@ export class Home extends Component { } selects() { + let allRss = `/feeds/all.xml?sort=${this.state.sort}`; + let localRss = `/feeds/local.xml?sort=${this.state.sort}`; + let frontRss = UserService.Instance.myUserInfo + ? `/feeds/front/${UserService.Instance.auth}.xml?sort=${this.state.sort}` + : ""; + return (
@@ -688,32 +694,33 @@ export class Home extends Component { {this.state.listingType == ListingType.All && ( - - - + <> + + + + + )} {this.state.listingType == ListingType.Local && ( - - - + <> + + + + + )} {UserService.Instance.myUserInfo && this.state.listingType == ListingType.Subscribed && ( - - - + <> + + + + + )}
); diff --git a/src/shared/components/person/inbox.tsx b/src/shared/components/person/inbox.tsx index b1f14e20..470ef5eb 100644 --- a/src/shared/components/person/inbox.tsx +++ b/src/shared/components/person/inbox.tsx @@ -140,6 +140,7 @@ export class Inbox extends Component { } render() { + let inboxRss = `/feeds/inbox/${UserService.Instance.auth}.xml`; return (
{this.state.loading ? ( @@ -156,13 +157,14 @@ export class Inbox extends Component {
{i18n.t("inbox")} - + +
{this.state.replies.length + diff --git a/src/shared/components/person/profile.tsx b/src/shared/components/person/profile.tsx index e36d0145..0f567d2c 100644 --- a/src/shared/components/person/profile.tsx +++ b/src/shared/components/person/profile.tsx @@ -335,6 +335,8 @@ export class Profile extends Component { } selects() { + let profileRss = `/feeds/u/${this.state.userName}.xml?sort=${this.state.sort}`; + return (
{this.viewRadios()} @@ -344,13 +346,10 @@ export class Profile extends Component { hideHot hideMostComments /> - + +
); }