[NRK] Remove explicit Accept-Encoding header that invites Brotli

Fixes #31285
This commit is contained in:
dirkf 2022-10-10 17:41:40 +00:00 committed by GitHub
parent d35557a75d
commit 22127b271c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -60,8 +60,7 @@ class NRKBaseIE(InfoExtractor):
return self._download_json(
urljoin('https://psapi.nrk.no/', path),
video_id, note or 'Downloading %s JSON' % item,
fatal=fatal, query=query,
headers={'Accept-Encoding': 'gzip, deflate, br'})
fatal=fatal, query=query)
class NRKIE(NRKBaseIE):