diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-04-03 18:16:41 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-04-14 13:24:03 +0200 |
commit | 449d530a3037e65cb045bcd2cb8a28d33ce1493a (patch) | |
tree | bae3680eee0eb68722e31c035fda98b61a564235 /toolkit | |
parent | 8bd941d4e32008b0c49953c0c6f93124e2823696 (diff) | |
download | UXP-449d530a3037e65cb045bcd2cb8a28d33ce1493a.tar UXP-449d530a3037e65cb045bcd2cb8a28d33ce1493a.tar.gz UXP-449d530a3037e65cb045bcd2cb8a28d33ce1493a.tar.lz UXP-449d530a3037e65cb045bcd2cb8a28d33ce1493a.tar.xz UXP-449d530a3037e65cb045bcd2cb8a28d33ce1493a.zip |
Issue #1508 - Redirect moz://a to http://thereisonlyxul.org/
Diffstat (limited to 'toolkit')
-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 = { |