🐛 Fix push notification didn't contains custom category identifier

This commit is contained in:
2025-07-24 14:43:00 +08:00
parent 3f2dfe6076
commit 29403b09d2
4 changed files with 7 additions and 6 deletions

View File

@@ -107,7 +107,7 @@ public class PusherServiceGrpc(
Topic = request.Notification.Topic,
Title = request.Notification.Title,
Subtitle = request.Notification.Subtitle, Content = request.Notification.Body,
Meta = GrpcTypeHelper.ConvertFromValueMap(request.Notification.Meta),
Meta = GrpcTypeHelper.ConvertFromValueMap(request.Notification.Meta)
};
if (request.Notification.ActionUri is not null)
notification.Meta["action_uri"] = request.Notification.ActionUri;