Skip to content

Commit

Permalink
open chat fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dclstn committed May 13, 2024
1 parent 0c5dc3f commit 49c15a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/script/modules/presence-notifications/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function sendThrottledOpenChatNotification(presencePayload: any) {
return;
}
openChatNotifications.add(presencePayload.senderUserId);
const notification = new Notification(presencePayload.senderUsername, { body: 'Peeking your Chat' });
const notification = new Notification(presencePayload.senderUsername, { body: 'Opened your Chat' });
setTimeout(() => {
openChatNotifications.delete(presencePayload.senderUserId);
notification.close();
Expand Down

0 comments on commit 49c15a2

Please sign in to comment.