This is an automated email from the git hooks/post-receive script.
richard pushed a commit to branch tor-browser-102.3.0esr-12.0-2 in repository tor-browser.
commit cbb8519e4368fa3eba1b7eeb56a6365d7eebad36 Author: Henry Wilkes henry@torproject.org AuthorDate: Wed Oct 12 16:58:56 2022 +0100
fixup! Bug 41340: Enable TOR_BROWSER_NIGHTLY_BUILD features for dev and nightly builds --- modules/libpref/init/all.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/libpref/init/all.js b/modules/libpref/init/all.js index 94726098b214..9f820061f897 100644 --- a/modules/libpref/init/all.js +++ b/modules/libpref/init/all.js @@ -4324,7 +4324,7 @@ pref("devtools.policy.disabled", false); // Enable deprecation warnings. pref("devtools.errorconsole.deprecation_warnings", true);
-#ifdef NIGHTLY_BUILD +#if defined(NIGHTLY_BUILD) || defined(TOR_BROWSER_NIGHTLY_BUILD) // Don't show the Browser Toolbox prompt on local builds / nightly. pref("devtools.debugger.prompt-connection", false, sticky); #else