1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-06-14 16:25:03 +12:00
This commit is contained in:
gorhill 2015-05-08 09:34:16 -04:00
parent 186c649984
commit 4f2ecc710d

View file

@ -1185,10 +1185,10 @@ var httpObserver = {
result = vAPI.net.onHeadersReceived.callback({
hostname: URI.asciiHost,
parentFrameId: type === 6 ? -1 : 0,
parentFrameId: type === 'main_frame' ? -1 : 0,
responseHeaders: result ? [{name: topic, value: result}] : [],
tabId: channelData[0],
type: this.typeMap[type] || 'other',
type: type,
url: URI.asciiSpec
});