Update for twitch.tv #5184 (#3781)

This commit is contained in:
pixeltris 2020-10-02 17:20:30 +01:00 committed by Raymond Hill
parent 26985f04a9
commit 13bfbe8fe4
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 /// twitch-videoad.js
(function() { (function() {
if ( /(^|\.)twitch\.tv$/.test(document.location.hostname) === false ) { return; } if ( /(^|\.)twitch\.tv$/.test(document.location.hostname) === false ) { return; }
@ -1334,7 +1334,7 @@
window.fetch = function(input) { window.fetch = function(input) {
if ( arguments.length >= 2 && typeof input === 'string' && input.includes('/access_token') ) { if ( arguments.length >= 2 && typeof input === 'string' && input.includes('/access_token') ) {
var url = new URL(arguments[0]); var url = new URL(arguments[0]);
url.searchParams.set('platform', '_'); url.searchParams.delete('platform');
arguments[0] = url.href; arguments[0] = url.href;
} }
return realFetch.apply(this, arguments); return realFetch.apply(this, arguments);