mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-02 00:42:45 +01:00
code review re. 60f60c2c97
This commit is contained in:
parent
83e66b36f1
commit
35b46cab4c
@ -55,6 +55,7 @@ var ThirdParty = 2 << 2;
|
||||
|
||||
var AnyType = 0 << 4;
|
||||
var typeNameToTypeValue = {
|
||||
'notype': 0 << 4,
|
||||
'stylesheet': 1 << 4,
|
||||
'image': 2 << 4,
|
||||
'object': 3 << 4,
|
||||
@ -2432,8 +2433,10 @@ FilterContainer.prototype.matchString = function(context) {
|
||||
// https://github.com/chrisaljoudi/uBlock/issues/519
|
||||
// Use exact type match for anything beyond `other`
|
||||
// Also, be prepared to support unknown types
|
||||
var type = typeNameToTypeValue[context.requestType] || typeOtherValue;
|
||||
if ( type > typeOtherValue ) {
|
||||
var type = typeNameToTypeValue[context.requestType];
|
||||
if ( type === undefined ) {
|
||||
type = typeOtherValue;
|
||||
} else if ( type > typeOtherValue ) {
|
||||
return this.matchStringExactType(context, context.requestURL, context.requestType);
|
||||
}
|
||||
|
||||
|
@ -169,7 +169,7 @@ var onBeforeRootFrameRequest = function(details) {
|
||||
pageDomain: requestDomain,
|
||||
requestURL: requestURL,
|
||||
requestHostname: requestHostname,
|
||||
requestType: 'main_frame'
|
||||
requestType: 'notype'
|
||||
};
|
||||
|
||||
var result = '';
|
||||
|
Loading…
Reference in New Issue
Block a user