web-push-libs / web-push

Web Push library for Node.js
Other
3.28k stars 304 forks source link

Body not showing in push notification #822

Closed TamarTal23 closed 1 year ago

TamarTal23 commented 1 year ago

Operating System: Windows 10 Node Version: 16.16 web-push Version: 3.5.0

Tried in Chrome and Edge

I'm getting push notifications with only the title and without the body from the payload.

This is my payload:

await webpush.sendNotification(subscription, JSON.stringify({ title: 'title', body: 'short text' } ));

image

marco-c commented 1 year ago

I think what you are showing in the popup depends on your code on the client side.

TamarTal23 commented 1 year ago

it was a stupid typo in the client, thank you!!!