Skip to content

Commit

Permalink
Don't stringify data for telemetry
Browse files Browse the repository at this point in the history
  • Loading branch information
calixteman committed Mar 4, 2024
1 parent c451b6d commit ba3e559
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 ba3e559

Please sign in to comment.