Prohledat stránky podpory

Vyhněte se podvodům. Za účelem poskytnutí podpory vás nikdy nežádáme, abyste zavolali nebo poslali SMS na nějaké telefonní číslo nebo abyste sdělili své osobní údaje. Jakékoliv podezřelé chování nám prosím nahlaste pomocí odkazu „Nahlásit zneužití“.

Learn More

Can't set network.trr.mode via user.js

  • 3 odpovědi
  • 1 má tento problém
  • 19 zobrazení
  • Poslední odpověď od rurbanowtreefox

more options

I work in a Windows enterprise environment that want to implement the following setting in Firefox 69.03: user_pref("network.trr.mode", "5");

I have a one line user.js file and place it where the prefs.js is located. The changed setting is never picked up by Firefox. What am I doing wrong? Thanks.

I work in a Windows enterprise environment that want to implement the following setting in Firefox 69.03: user_pref("network.trr.mode", "5"); I have a one line user.js file and place it where the prefs.js is located. The changed setting is never picked up by Firefox. What am I doing wrong? Thanks.

Všechny odpovědi (3)

more options

hi, please try the following instead (no quotes around the integer):

user_pref("network.trr.mode", 5);
more options

Zvolené řešení

more options

Thank you. That fixed it.