mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 12:05:01 +00:00
Fixing issue with community.tsx.
This commit is contained in:
parent
27ea8af992
commit
ce10a3454f
1 changed files with 1 additions and 2 deletions
3
ui/src/components/community.tsx
vendored
3
ui/src/components/community.tsx
vendored
|
@ -80,7 +80,6 @@ export class Community extends Component<any, State> {
|
|||
WebSocketService.Instance.getCommunityByName(this.state.communityName);
|
||||
}
|
||||
|
||||
this.keepFetchingPosts();
|
||||
}
|
||||
|
||||
componentWillUnmount() {
|
||||
|
@ -218,7 +217,7 @@ export class Community extends Component<any, State> {
|
|||
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;
|
||||
|
|
Loading…
Reference in a new issue