diff --git a/ui/src/components/community.tsx b/ui/src/components/community.tsx index bcd232e3..580e9a49 100644 --- a/ui/src/components/community.tsx +++ b/ui/src/components/community.tsx @@ -80,7 +80,6 @@ export class Community extends Component { WebSocketService.Instance.getCommunityByName(this.state.communityName); } - this.keepFetchingPosts(); } componentWillUnmount() { @@ -218,7 +217,7 @@ export class Community extends Component { this.state.admins = res.admins; document.title = `/c/${this.state.community.name} - ${WebSocketService.Instance.site.name}`; this.setState(this.state); - this.fetchPosts(); + this.keepFetchingPosts(); } else if (op == UserOperation.EditCommunity) { let res: CommunityResponse = msg; this.state.community = res.community;