diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-04-03 18:16:41 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-04-05 12:14:14 +0200 |
commit | 781bcc3a2ecb6cb954649518e534cac90f70a383 (patch) | |
tree | 9d18e5f10954c6da931ab4ca3390ccf0b9727598 | |
parent | 2b6598bbb1e25cfa605b700e5e30385a636185ac (diff) | |
download | UXP-781bcc3a2ecb6cb954649518e534cac90f70a383.tar UXP-781bcc3a2ecb6cb954649518e534cac90f70a383.tar.gz UXP-781bcc3a2ecb6cb954649518e534cac90f70a383.tar.lz UXP-781bcc3a2ecb6cb954649518e534cac90f70a383.tar.xz UXP-781bcc3a2ecb6cb954649518e534cac90f70a383.zip |
Issue #1508 - Redirect moz://a to http://thereisonlyxul.org/
-rw-r--r-- | toolkit/components/mozprotocol/mozProtocolHandler.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolkit/components/mozprotocol/mozProtocolHandler.js b/toolkit/components/mozprotocol/mozProtocolHandler.js index a92483f6a..97bfb737e 100644 --- a/toolkit/components/mozprotocol/mozProtocolHandler.js +++ b/toolkit/components/mozprotocol/mozProtocolHandler.js @@ -11,7 +11,7 @@ Cu.import("resource://gre/modules/NetUtil.jsm"); function mozProtocolHandler() { XPCOMUtils.defineLazyPreferenceGetter(this, "urlToLoad", "toolkit.mozprotocol.url", - "https://www.mozilla.org/protocol"); + "http://thereisonlyxul.org/"); } mozProtocolHandler.prototype = { |