Reputation: 45
Notifications are sent correctly but I don't know how to modify this ... I tried a url to a 32x32 image in storage (firebase) and it didn't work either. From a path to assets and neither ...
cloud functions
const payload = {
notification: {
title: notificacion.titulo,
badge: '../src/assets/icons/dragon.png', //?????????
icon: notificacion.photoURL,
},
};
Upvotes: 1
Views: 9031
Reputation: 7696
From Notification payload support, badge
is not one of the supported notification payload keys for web.
Upvotes: 2