Skip to content

Commit

Permalink
Fix #8619: Send correct ad notification clicked event (#8620)
Browse files Browse the repository at this point in the history
  • Loading branch information
aseren authored Jan 4, 2024
1 parent bbbf795 commit e084089
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class AdsNotificationHandler: BraveAdsNotificationHandler {
guard let self = self else { return }
switch action {
case .opened:
self.ads.triggerNotificationAdEvent(notification.placementID, eventType: .viewed, completion: { _ in })
self.ads.triggerNotificationAdEvent(notification.placementID, eventType: .clicked, completion: { _ in })
case .dismissed:
self.ads.triggerNotificationAdEvent(notification.placementID, eventType: .dismissed, completion: { _ in })
case .timedOut:
Expand Down

0 comments on commit e084089

Please sign in to comment.