diff --git a/src/pipeline.ts b/src/pipeline.ts index e5f6a216..8f2f284d 100644 --- a/src/pipeline.ts +++ b/src/pipeline.ts @@ -273,6 +273,10 @@ async function webPush(event: NostrEvent): Promise { notification_id: notification.id, notification_type: notification.type, access_token: nip19.npubEncode(row.pubkey), + preferred_locale: 'en', + title: notification.account.display_name || notification.account.username, + icon: notification.account.avatar_static, + body: event.content, }; await DittoPush.push(subscription, message);