summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-05-28 01:15:04 +0600
committerSergey M․ <dstftw@gmail.com>2015-05-28 01:15:04 +0600
commitff4a1279f2d40fdba3287d4e7949bd8caa89eb04 (patch)
tree6c7c4ba9dcda23efaf29ba65cb321e087c588986
parent9b254aa177d58b7b4c4f44dce8c38fa7978c7df6 (diff)
downloadyoutube-dl-ff4a1279f2d40fdba3287d4e7949bd8caa89eb04.tar.gz
youtube-dl-ff4a1279f2d40fdba3287d4e7949bd8caa89eb04.tar.xz
youtube-dl-ff4a1279f2d40fdba3287d4e7949bd8caa89eb04.zip
[nowtv] Do not request unnecessary metadata
-rw-r--r--youtube_dl/extractor/nowtv.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/nowtv.py b/youtube_dl/extractor/nowtv.py
index 295168432..d39bbde99 100644
--- a/youtube_dl/extractor/nowtv.py
+++ b/youtube_dl/extractor/nowtv.py
@@ -115,7 +115,7 @@ class NowTVIE(InfoExtractor):
         station = mobj.group('station')
 
         info = self._download_json(
-            'https://api.nowtv.de/v3/movies/%s?fields=*,format,files,breakpoints,paymentPaytypes,trailers,pictures' % display_id,
+            'https://api.nowtv.de/v3/movies/%s?fields=*,format,files' % display_id,
             display_id)
 
         video_id = compat_str(info['id'])