Skip to content

Commit

Permalink
Check for newmessageSilent_2 notification type as well in startup (#2…
Browse files Browse the repository at this point in the history
  • Loading branch information
buoyad committed Oct 8, 2019
1 parent f692edc commit 4f3634f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shared/actions/platform-specific/push.native.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ function* getStartupDetailsFromInitialPush() {
if (notification.username) {
return {startupFollowUser: notification.username}
}
} else if (notification.type === 'chat.newmessage') {
} else if (notification.type === 'chat.newmessage' || notification.type === 'chat.newmessageSilent_2') {
if (notification.conversationIDKey) {
return {startupConversation: notification.conversationIDKey}
}
Expand Down

0 comments on commit 4f3634f

Please sign in to comment.