1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-06-13 15:54:54 +12:00

new revision + fixed frame parent id

This commit is contained in:
gorhill 2015-01-17 18:02:45 -05:00
parent db6ed71060
commit 3e71ee90c6

View file

@ -45,7 +45,7 @@ vAPI.firefox = true;
// TODO: read these data from somewhere...
vAPI.app = {
name: 'µBlock',
version: '0.8.5.5'
version: '0.8.5.6'
};
/******************************************************************************/
@ -945,7 +945,7 @@ var httpObserver = {
result = vAPI.net.onHeadersReceived.callback({
url: URI.asciiSpec,
tabId: channelData[1],
parentFrameId: -1,
parentFrameId: channelData[0] === this.MAIN_FRAME ? -1 : 0,
responseHeaders: result ? [{name: topic, value: result}] : []
});