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

Fixes #3557 The search counts telemetry is recording partial data #3582

Merged
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion Blockzilla/BrowserViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -866,7 +866,7 @@ class BrowserViewController: UIViewController {
}

fileprivate func recordSearchEvent(_ source: Source) {
let identifier = searchEngineManager.activeEngine.getNameOrCustom()
let identifier = searchEngineManager.activeEngine.getNameOrCustom().lowercased()
let source = source.rawValue
GleanMetrics.BrowserSearch.searchCount["\(identifier).\(source)"].add()
}
Expand Down
2 changes: 1 addition & 1 deletion Blockzilla/metrics.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -571,7 +571,7 @@ browser_search:
- interaction
notification_emails:
- [email protected]
expires: "2023-09-22"
expires: never
in_content:
type: labeled_counter
description: |
Expand Down