From b0b50098a4079daa0622a1ff9b4c52774d1d1d9f Mon Sep 17 00:00:00 2001 From: Dessalines Date: Tue, 4 Feb 2020 11:19:05 -0500 Subject: Websocket reconnect reload page data. Fixes #504 --- ui/src/components/inbox.tsx | 2 ++ 1 file changed, 2 insertions(+) (limited to 'ui/src/components/inbox.tsx') diff --git a/ui/src/components/inbox.tsx b/ui/src/components/inbox.tsx index 6f4d2377..6849b37d 100644 --- a/ui/src/components/inbox.tsx +++ b/ui/src/components/inbox.tsx @@ -313,6 +313,8 @@ export class Inbox extends Component { if (msg.error) { toast(i18n.t(msg.error), 'danger'); return; + } else if (msg.reconnect) { + this.refetch(); } else if (res.op == UserOperation.GetReplies) { let data = res.data as GetRepliesResponse; this.state.replies = data.replies; -- cgit v1.2.3