From 01cccd0d26d9f61943efa7420574bd5dcc4940ad Mon Sep 17 00:00:00 2001 From: Acho Arnold Date: Fri, 8 Dec 2023 16:38:10 +0200 Subject: [PATCH] Ignore heartbeat when loading threads --- web/store/index.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/web/store/index.ts b/web/store/index.ts index 621a6a34..2f6d6083 100644 --- a/web/store/index.ts +++ b/web/store/index.ts @@ -303,7 +303,9 @@ export const actions = { }, }) - await context.dispatch('getHeartbeat') + try { + await context.dispatch('getHeartbeat') + } catch (e) {} context.commit('setThreads', response.data.data) },