From d6d8fcc22c3820f2ae08229e0d37be19fba74db9 Mon Sep 17 00:00:00 2001 From: Farooq AR Date: Fri, 17 Jul 2020 06:31:03 +0000 Subject: [PATCH] Bug 1636423 - Enable SSE on Nightly. r=Honza Differential Revision: https://phabricator.services.mozilla.com/D83894 --- browser/app/profile/firefox.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/browser/app/profile/firefox.js b/browser/app/profile/firefox.js index bc08bd5ef56f..8baf41531db0 100644 --- a/browser/app/profile/firefox.js +++ b/browser/app/profile/firefox.js @@ -2210,8 +2210,12 @@ pref("devtools.netmonitor.features.webSockets", true); // netmonitor audit pref("devtools.netmonitor.audits.slow", 500); -// Disable the EventSource Inspector. -pref("devtools.netmonitor.features.serverSentEvents", false); +// Enable the EventSource Inspector in Nightly. +#if defined(NIGHTLY_BUILD) + pref("devtools.netmonitor.features.serverSentEvents", true); +#else + pref("devtools.netmonitor.features.serverSentEvents", false); +#endif // Enable the Storage Inspector pref("devtools.storage.enabled", true);