Skip to content

Commit

Permalink
fixup! add back forward activity trampolining
Browse files Browse the repository at this point in the history
  • Loading branch information
jkasten2 committed May 14, 2022
1 parent 06d687a commit 41c6ab8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2431,11 +2431,11 @@ public void run() {

static void openDestinationActivity(
@NonNull final Activity activity,
@NonNull final JSONArray pushPayload
@NonNull final JSONArray pushPayloads
) {
try {
// Always use the top most notification if user tapped on the summary notification
JSONObject firstPayloadItem = pushPayload.getJSONObject(0);
JSONObject firstPayloadItem = pushPayloads.getJSONObject(0);
GenerateNotificationOpenIntent intentGenerator = GenerateNotificationOpenIntentFromPushPayload.INSTANCE.create(
activity,
firstPayloadItem
Expand Down

0 comments on commit 41c6ab8

Please sign in to comment.