Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

Fix #8178: Set the NTP-SI P3A total count correctly #8179

Merged
merged 1 commit into from
Oct 3, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,8 @@ final class NewTabPageP3AHelper {
let name = DynamicHistogramName(creativeInstanceId: creativeInstanceId, eventType: eventType)
countsStorage.eventCounts[creativeInstanceId]?.inflightCounts[eventType] = count
UmaHistogramRecordValueToBucket(name.histogramName, buckets: countBuckets, value: count)
}
if !eventCounts.counts.isEmpty {
totalActiveCreatives += 1
}
}
Expand Down