Last active
October 6, 2015 18:05
-
-
Save jxpx777/e238db60dfdcf2dd839b to your computer and use it in GitHub Desktop.
Error when disabling jetpack add-on
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
JavaScript error: resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///Users/j/Library/Application%20Support/Firefox/Profiles/7ry75y3g.default-1426709652923/extensions/[email protected]!/bootstrap.js, line 290: NS_ERROR_ILLEGAL_VALUE: Component returned failure code: 0x80070057 (NS_ERROR_ILLEGAL_VALUE) [nsIXPCComponents_Utils.nukeSandbox] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function shutdown(data, reason) { | |
console.log("[FIREFOX] @shutdown Removing observers"); | |
Services['obs']['removeObserver'](httpRequestObserver, "http-on-modify-request"); | |
Services['obs']['removeObserver'](httpRequestObserver, "http-on-examine-response"); | |
Services['obs']['removeObserver'](httpRequestObserver, "http-on-examine-cached-response"); | |
Services['obs']['removeObserver'](httpRequestObserver, "http-on-examine-merged-response"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I am facing the same issue. Got around it yet?