diff --git a/toolkit/content/aboutTelemetry.js b/toolkit/content/aboutTelemetry.js index a69ab8f5e14e..5093b4d7dfa6 100644 --- a/toolkit/content/aboutTelemetry.js +++ b/toolkit/content/aboutTelemetry.js @@ -2059,12 +2059,7 @@ function urlStateRestore() { } function openJsonInFirefoxJsonViewer(json) { - json = unescape(encodeURIComponent(json)); - try { - window.open("data:application/json;base64," + btoa(json)); - } catch (e) { - show(document.querySelector(".category[value=raw-payload-section]")); - } + window.open("data:application/json;base64," + btoa(json)); } function onLoad() {