Skip to content

Commit

Permalink
Merge pull request #17772 from calixteman/reporttelemetry
Browse files Browse the repository at this point in the history
Don't stringify data for telemetry
  • Loading branch information
calixteman authored Mar 5, 2024
2 parents c451b6d + ba3e559 commit b447a62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/firefoxcom.js
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ class ExternalServices extends BaseExternalServices {
}

reportTelemetry(data) {
FirefoxCom.request("reportTelemetry", JSON.stringify(data));
FirefoxCom.request("reportTelemetry", data);
}

updateEditorStates(data) {
Expand Down

0 comments on commit b447a62

Please sign in to comment.