We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 88e5516 + d255e10 commit 6d1ca14Copy full SHA for 6d1ca14
app/lib/notifications/index.ts
@@ -23,7 +23,9 @@ export const onNotification = (push: INotification): void => {
23
if (push?.payload?.ejson) {
24
try {
25
const notification = EJSON.parse(push.payload.ejson);
26
- store.dispatch(deepLinkingClickCallPush({ ...notification, event: identifier === 'ACCEPT_ACTION' ? 'accept' : 'decline' }));
+ store.dispatch(
27
+ deepLinkingClickCallPush({ ...notification, event: identifier === 'ACCEPT_ACTION' ? 'accept' : 'decline' })
28
+ );
29
return;
30
} catch (e) {
31
console.warn('Failed to parse video conf notification:', e);
0 commit comments