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.
1 parent bee1e42 commit 5d3e75eCopy full SHA for 5d3e75e
src/core/pushnotifications/providers/pushnotifications.ts
@@ -527,6 +527,12 @@ export class CorePushNotificationsProvider {
527
localNotif.icon = notification.image;
528
// This feature isn't supported by the official plugin, we use a fork.
529
(<any> localNotif).iconType = data['image-type'];
530
+
531
+ localNotif.summary = data.summaryText;
532
533
+ if (data.picture) {
534
+ localNotif.attachments = [data.picture];
535
+ }
536
}
537
538
Promise.all(promises).then(() => {
0 commit comments