Skip to content

Commit

Permalink
Fix/push notification (#98)
Browse files Browse the repository at this point in the history
* fix: switch to #send method of fcm

* fix: firebase ttl keys
  • Loading branch information
ramank775 authored Sep 30, 2024
1 parent 653fc2b commit 099a1cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/notification-ms/pns/firebase-pn-service.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class FirebasePushNotificationService extends IPushNotificationService {
async push(token, payload) {
const options = {
priority: 'high',
timeToLive: this.#ttl,
ttl: this.#ttl,
};
await this.#messaging
.send({
Expand Down

0 comments on commit 099a1cb

Please sign in to comment.