mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 12:05:01 +00:00
parent
1c4b22a7fb
commit
11fe3436c2
1 changed files with 5 additions and 3 deletions
8
ui/src/components/navbar.tsx
vendored
8
ui/src/components/navbar.tsx
vendored
|
@ -182,7 +182,7 @@ export class Navbar extends Component<any, NavbarState> {
|
|||
|
||||
keepFetchingReplies() {
|
||||
this.fetchReplies();
|
||||
setInterval(() => this.fetchReplies(), 30000);
|
||||
setInterval(() => this.fetchReplies(), 15000);
|
||||
}
|
||||
|
||||
fetchReplies() {
|
||||
|
@ -193,8 +193,10 @@ export class Navbar extends Component<any, NavbarState> {
|
|||
page: 1,
|
||||
limit: 9999,
|
||||
};
|
||||
WebSocketService.Instance.getReplies(repliesForm);
|
||||
this.state.fetchCount++;
|
||||
if (this.currentLocation !=='/inbox') {
|
||||
WebSocketService.Instance.getReplies(repliesForm);
|
||||
this.state.fetchCount++;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue