1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-03 17:49:39 +02:00

Merge branch 'master' of github.com:gorhill/uBlock

This commit is contained in:
Raymond Hill 2020-10-02 12:21:31 -04:00
commit 5aca419603
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -1326,7 +1326,7 @@
})();
// https://github.com/uBlockOrigin/uAssets/pull/3517
// https://github.com/uBlockOrigin/uAssets/issues/5184
/// twitch-videoad.js
(function() {
if ( /(^|\.)twitch\.tv$/.test(document.location.hostname) === false ) { return; }
@ -1334,7 +1334,7 @@
window.fetch = function(input) {
if ( arguments.length >= 2 && typeof input === 'string' && input.includes('/access_token') ) {
var url = new URL(arguments[0]);
url.searchParams.set('platform', '_');
url.searchParams.delete('platform');
arguments[0] = url.href;
}
return realFetch.apply(this, arguments);