push was updated

This commit is contained in:
Artemy
2026-03-07 21:36:27 +07:00
parent 08270e0350
commit bc95cb5331
5 changed files with 29 additions and 10 deletions
@@ -47,7 +47,8 @@ public class FirebasePushProvider : IPushNotificationProvider
Priority = Priority.High,
Notification = new AndroidNotification
{
ChannelId = message.ChannelId ?? "chat_messages"
ChannelId = message.ChannelId ?? "chat_messages",
Tag = message.Tag,
}
} : null
};
@@ -96,7 +97,11 @@ public class FirebasePushProvider : IPushNotificationProvider
msg.Android = new AndroidConfig
{
Priority = Priority.High,
Notification = new AndroidNotification { ChannelId = pm.ChannelId }
Notification = new AndroidNotification
{
ChannelId = pm.ChannelId,
Tag = pm.Tag,
}
};
}