You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 4, 2020. It is now read-only.
Expected Behaviour
A push notification should be received to the user with a picture displayed with the notification.
Actual Behaviour
Though its working as expected for most of the users, for few users, they dont see the picture attached. They only see a blank space instead of that
Reproduce Scenario (including but not limited to)
Fire the push notification request from the postman
Steps to Reproduce
Fire the push notification request from the postman
Platform and Version (eg. Android 5.0 or iOS 9.2.1)
Android Version 9
(Android) What device vendor (e.g. Samsung, HTC, Sony...)
Issue is noticed in Xiomi note 8 and Samsung J7 Nxt
Cordova CLI version and cordova platform version
Plugin version
Sample Push Data Payload
{ "to" : "c9woN7UboEg:APA91bG64PO7uoChESmOKan6ASJcbQrKUdk8IEqEayt_n76csFsgYhycP0_H_NndulIOMbTum0UiMsikBbFl6IoWTjRMnXrd6F8bzN0qPsliLVHvhCVvNXV7IHveqgWD4pGfldzqMj7P", "collapse_key" : "type_a", "data" : { "body" : "body text", "title": "title text", "image": "www/assets/Logo/SPAR-LOGO.png", "priority": 2, "style":"picture", "picture": "https://i.ibb.co/0ycWjzG/Crazy-Friday-offer.jpg", "force-start": 1, "content-available":1 } }
Sample Code that illustrates the problem
`
const options: PushOptions = {
android: {
//shows the notification even when the app is in foreground but nothing happens on click
forceShow: true,
},
ios: {
alert: 'true',
//uncomment this while debugging
//fcmSandbox: true,
topics: ['push-test-topic-ios'],
badge: true,
sound: 'false'
},
windows: {},
browser: {
pushServiceURL: 'http://push.api.phonegap.com/v1/push'
}
};
`
The text was updated successfully, but these errors were encountered: