We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8da231 commit b9956a8Copy full SHA for b9956a8
platform/mv3/extension/js/ubo-parser.js
@@ -314,7 +314,7 @@ function parseNetworkFilter(parser) {
314
break;
315
case sfp.NODE_TYPE_NET_OPTION_NAME_METHOD: {
316
const value = parser.getNetOptionValue(type);
317
- for ( const method of value.toUpperCase().split('|') ) {
+ for ( const method of value.toLowerCase().split('|') ) {
318
const not = method.charCodeAt(0) === 0x7E /* '~' */;
319
if ( not ) {
320
excludedRequestMethods.add(method.slice(1));
0 commit comments