diff options
author | gorhill <rhill@raymondhill.net> | 2015-01-23 13:09:26 -0500 |
---|---|---|
committer | gorhill <rhill@raymondhill.net> | 2015-01-23 13:09:26 -0500 |
commit | 1a5a42238e1c3a0d4e9b6d81cfa820ed83c3681e (patch) | |
tree | 03d4809ca0553597f5afcbb1895591e3fff31a58 | |
parent | 44bc263a69af8475e7ef3f2c973ac2aeca53f9f5 (diff) | |
download | uBlock-1a5a42238e1c3a0d4e9b6d81cfa820ed83c3681e.zip uBlock-1a5a42238e1c3a0d4e9b6d81cfa820ed83c3681e.tar.gz uBlock-1a5a42238e1c3a0d4e9b6d81cfa820ed83c3681e.tar.bz2 |
do not rely on core to do the transposition
-rw-r--r-- | platform/firefox/vapi-background.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/platform/firefox/vapi-background.js b/platform/firefox/vapi-background.js index 500e8a9..07d3c1d 100644 --- a/platform/firefox/vapi-background.js +++ b/platform/firefox/vapi-background.js @@ -787,7 +787,8 @@ var httpObserver = { 5: 'object', 6: 'main_frame', 7: 'sub_frame', - 11: 'xmlhttprequest' + 11: 'xmlhttprequest', + 12: 'object' }, lastRequest: { url: null, |