Skip to content

Commit

Permalink
Fixed compliation
Browse files Browse the repository at this point in the history
  • Loading branch information
anton-knyazev committed Aug 7, 2019
1 parent 0559bb3 commit fa15749
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,9 @@ class ActivityLauncher(
val list =
listOf(*parentLaunchers.map { it.createIntent(context) }.toTypedArray(), createIntent(context))

return PendingIntent.getActivities(context, requestCode, *list.toTypedArray(), flags)
val intents = list.toTypedArray()

return PendingIntent.getActivities(context, requestCode, intents, flags)
}

fun getPendingIntentWithParentStack(
Expand Down

0 comments on commit fa15749

Please sign in to comment.