Skip to content

Commit

Permalink
Merge pull request #4243 from brave/pr4241_ie_fix_p3a_1.2.x
Browse files Browse the repository at this point in the history
Issue 7306: Fix the P3A answer count default value. (uplift to 1.2.x)
  • Loading branch information
bsclifton authored Dec 17, 2019
2 parents e5a5f6c + 381d5c9 commit d969be6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/p3a/brave_p3a_log_store.cc
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ void RecordP3A(uint64_t answers_count) {
answer = 1;
} else if (5 <= answers_count && answers_count < 10) {
answer = 2;
} else {
} else if (10 <= answers_count) {
answer = 3;
}
UMA_HISTOGRAM_COUNTS_100("Brave.P3A.SentAnswersCount", answer);
Expand Down

0 comments on commit d969be6

Please sign in to comment.