Skip to content

Commit

Permalink
Ignore heartbeat when loading threads
Browse files Browse the repository at this point in the history
  • Loading branch information
AchoArnold committed Dec 8, 2023
1 parent 4426331 commit 01cccd0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion web/store/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,9 @@ export const actions = {
},
})

await context.dispatch('getHeartbeat')
try {
await context.dispatch('getHeartbeat')
} catch (e) {}
context.commit('setThreads', response.data.data)
},

Expand Down

0 comments on commit 01cccd0

Please sign in to comment.