1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-07-08 04:49:12 +02:00
gorhill 2016-06-03 09:32:05 -04:00
parent 6ee6551f57
commit e177e04f90

View File

@ -1844,7 +1844,7 @@ var httpObserver = {
register: function() {
this.pendingRingBufferInit();
Services.obs.addObserver(this, 'http-on-opening-request', true);
Services.obs.addObserver(this, 'http-on-modify-request', true);
Services.obs.addObserver(this, 'http-on-examine-response', true);
// Guard against stale instances not having been unregistered
@ -1872,7 +1872,7 @@ var httpObserver = {
},
unregister: function() {
Services.obs.removeObserver(this, 'http-on-opening-request');
Services.obs.removeObserver(this, 'http-on-modify-request');
Services.obs.removeObserver(this, 'http-on-examine-response');
this.componentRegistrar.unregisterFactory(this.classID, this);
@ -2142,7 +2142,7 @@ var httpObserver = {
return;
}
// http-on-opening-request
// http-on-modify-request
var pendingRequest = this.lookupPendingRequest(URI.spec);