1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-10-04 16:47:15 +02:00

Firefox: use correct data for parentFrameId

This commit is contained in:
Deathamns 2015-01-27 17:56:04 +01:00
parent 77133ae3f9
commit 9030bc6e53
2 changed files with 2 additions and 3 deletions

View File

@ -158,7 +158,6 @@ const contentObserver = {
}
let isTopLevel = context === context.top;
let frameId = isTopLevel ? 0 : this.getFrameId(context);
let parentFrameId;
if ( isTopLevel ) {
@ -171,7 +170,7 @@ const contentObserver = {
let messageManager = getMessageManager(context);
let details = {
frameId: frameId,
frameId: isTopLevel ? 0 : this.getFrameId(context),
openerURL: openerURL,
parentFrameId: parentFrameId,
type: type,

View File

@ -988,7 +988,7 @@ var httpObserver = {
result = vAPI.net.onHeadersReceived.callback({
hostname: URI.asciiHost,
parentFrameId: channelData[0] === this.MAIN_FRAME ? -1 : 0,
parentFrameId: channelData[4],
responseHeaders: result ? [{name: topic, value: result}] : [],
tabId: channelData[1],
url: URI.asciiSpec