We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2b9fef commit e15cbd5Copy full SHA for e15cbd5
1 file changed
packages/webapp/hooks/useCatchUserPresences.ts
@@ -127,7 +127,9 @@ export const useCatchUserPresences = () => {
127
})
128
.subscribe(async (status) => {
129
if (status !== 'SUBSCRIBED') return
130
- await messageSubscription.track(profile)
+ await messageSubscription.track(profile).catch((err) => {
131
+ console.error('Failed to track profile:', err)
132
+ })
133
setWorkspaceSetting('broadcaster', messageSubscription)
134
135
0 commit comments