1
0
mirror of https://gitlab.com/ytdl-org/youtube-dl.git synced 2025-11-02 07:58:24 -05:00

[instagram:user] Fix extraction (closes #16119)

This commit is contained in:
Sergey M․
2018-04-18 10:12:24 +07:00
parent e30991f920
commit 9b3036bd2e

View File

@@ -261,7 +261,7 @@ class InstagramUserIE(InfoExtractor):
for page_num in itertools.count(1):
variables = json.dumps({
'id': uploader_id,
'first': 100,
'first': 12,
'after': cursor,
})