chore: Add notification ID to tag to make it unique (#5227)

This commit is contained in:
Pranav Raj S
2022-08-09 00:09:11 +05:30
committed by GitHub
parent fe74a259be
commit 4b1bb65c92

View File

@@ -33,7 +33,7 @@ class Notification::PushNotificationService
def push_message def push_message
{ {
title: notification.push_message_title, title: notification.push_message_title,
tag: "#{notification.notification_type}_#{conversation.display_id}", tag: "#{notification.notification_type}_#{conversation.display_id}_#{notification.id}",
url: push_url url: push_url
} }
end end