Skip to content

Commit 01cccd0

Browse files
committed
Ignore heartbeat when loading threads
1 parent 4426331 commit 01cccd0

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

web/store/index.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,9 @@ export const actions = {
303303
},
304304
})
305305

306-
await context.dispatch('getHeartbeat')
306+
try {
307+
await context.dispatch('getHeartbeat')
308+
} catch (e) {}
307309
context.commit('setThreads', response.data.data)
308310
},
309311

0 commit comments

Comments
 (0)