We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98dfefa commit 72f0aceCopy full SHA for 72f0ace
sdk/Notifo.SDK/NotifoMobilePush/TrackSeenCommand.cs
@@ -29,8 +29,12 @@ public async ValueTask ExecuteAsync(
29
var trackUserNotificationDto = new TrackNotificationDto
30
{
31
DeviceIdentifier = Token,
32
+
33
// Track all notifications at once.
34
Seen = Ids.Select(x => x.ToString()).ToList(),
35
36
+ // Track individual channels.
37
+ Channel = "mobilepush"
38
};
39
40
await NotifoIO.Current.Notifications.ConfirmMeAsync(trackUserNotificationDto, ct);
0 commit comments