Raymond Hill
6 years ago
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2
1 changed files with
5 additions and
3 deletions
-
src/js/traffic.js
|
@ -205,9 +205,11 @@ var onBeforeSendHeadersHandler = function(details) { |
|
|
// https://github.com/uBlockOrigin/uMatrix-issues/issues/155
|
|
|
// https://github.com/uBlockOrigin/uMatrix-issues/issues/155
|
|
|
// https://github.com/uBlockOrigin/uMatrix-issues/issues/159
|
|
|
// https://github.com/uBlockOrigin/uMatrix-issues/issues/159
|
|
|
// TODO: import all filtering context improvements from uBO.
|
|
|
// TODO: import all filtering context improvements from uBO.
|
|
|
const srcHn = tabId >= 0 |
|
|
|
|
|
? pageStore.pageHostname |
|
|
|
|
|
: µmuri.hostnameFromURI(details.documentUrl) || pageStore.pageHostname; |
|
|
|
|
|
|
|
|
const srcHn = tabId < 0 || |
|
|
|
|
|
details.parentFrameId < 0 || |
|
|
|
|
|
details.parentFrameId === 0 && details.type === 'sub_frame' |
|
|
|
|
|
? µmuri.hostnameFromURI(details.documentUrl) || pageStore.pageHostname |
|
|
|
|
|
: pageStore.pageHostname; |
|
|
|
|
|
|
|
|
// https://github.com/gorhill/httpswitchboard/issues/342
|
|
|
// https://github.com/gorhill/httpswitchboard/issues/342
|
|
|
// Is this hyperlink auditing?
|
|
|
// Is this hyperlink auditing?
|
|
|