Skip to content

Commit 72f0ace

Browse files
Fix tracking.
1 parent 98dfefa commit 72f0ace

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

sdk/Notifo.SDK/NotifoMobilePush/TrackSeenCommand.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,12 @@ public async ValueTask ExecuteAsync(
2929
var trackUserNotificationDto = new TrackNotificationDto
3030
{
3131
DeviceIdentifier = Token,
32+
3233
// Track all notifications at once.
3334
Seen = Ids.Select(x => x.ToString()).ToList(),
35+
36+
// Track individual channels.
37+
Channel = "mobilepush"
3438
};
3539

3640
await NotifoIO.Current.Notifications.ConfirmMeAsync(trackUserNotificationDto, ct);

0 commit comments

Comments
 (0)