Firefox – Change Firefox update channel from ESR to release

firefoxupdates

So I have Firefox ESR installed, and I want to change it to the "release" channel. Is there a way to do that or I have to reinstall?

I've tried changing app.update.channel in about:config to 'release', and that didn't seem to do it.

Best Answer

The release channel is hardcoded in (Mozilla Program Directory/default/pref/) channel-prefs.js. You'll have to edit it manually.

Find

pref("app.update.channel", "esr");

and change it to

pref("app.update.channel", "release");
Related Question