Skip to content

Commit 6d1ca14

Browse files
committed
Merge branch 'feat.push-avatar-ios' of github.com:RocketChat/Rocket.Chat.ReactNative into feat.push-avatar-ios
2 parents 88e5516 + d255e10 commit 6d1ca14

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

app/lib/notifications/index.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ export const onNotification = (push: INotification): void => {
2323
if (push?.payload?.ejson) {
2424
try {
2525
const notification = EJSON.parse(push.payload.ejson);
26-
store.dispatch(deepLinkingClickCallPush({ ...notification, event: identifier === 'ACCEPT_ACTION' ? 'accept' : 'decline' }));
26+
store.dispatch(
27+
deepLinkingClickCallPush({ ...notification, event: identifier === 'ACCEPT_ACTION' ? 'accept' : 'decline' })
28+
);
2729
return;
2830
} catch (e) {
2931
console.warn('Failed to parse video conf notification:', e);

0 commit comments

Comments
 (0)