diff options
| author | tamaina <tamaina@hotmail.co.jp> | 2023-04-11 14:11:39 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-11 14:11:39 +0900 |
| commit | 3a90bcc03cc166632fb64aa76130b63a0ad37a64 (patch) | |
| tree | e5e6e6e07eb30d1369142d86546b6ab419d31a1b /packages/backend/src/core/PushNotificationService.ts | |
| parent | fix #10554 チャンネルの検索用ページとAPIの追加 (#10555) (diff) | |
| download | sharkey-3a90bcc03cc166632fb64aa76130b63a0ad37a64.tar.gz sharkey-3a90bcc03cc166632fb64aa76130b63a0ad37a64.tar.bz2 sharkey-3a90bcc03cc166632fb64aa76130b63a0ad37a64.zip | |
sw: なんかもうめっちゃ変えた (#10570)
* sw: なんかいろいろ
* remove debug code
* never renotify
* update changelog.md
Diffstat (limited to 'packages/backend/src/core/PushNotificationService.ts')
| -rw-r--r-- | packages/backend/src/core/PushNotificationService.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/packages/backend/src/core/PushNotificationService.ts b/packages/backend/src/core/PushNotificationService.ts index 69020f7e84..fd24831fbc 100644 --- a/packages/backend/src/core/PushNotificationService.ts +++ b/packages/backend/src/core/PushNotificationService.ts @@ -15,6 +15,7 @@ type PushNotificationsTypes = { antenna: { id: string, name: string }; note: Packed<'Note'>; }; + 'readAllNotifications': undefined; }; // Reduce length because push message servers have character limits @@ -68,6 +69,10 @@ export class PushNotificationService { }); for (const subscription of subscriptions) { + if ([ + 'readAllNotifications', + ].includes(type) && !subscription.sendReadMessage) continue; + const pushSubscription = { endpoint: subscription.endpoint, keys: { |