diff --git a/youtube_dl/extractor/flipagram.py b/youtube_dl/extractor/flipagram.py index 44e92f971..43ba83929 100644 --- a/youtube_dl/extractor/flipagram.py +++ b/youtube_dl/extractor/flipagram.py @@ -57,6 +57,8 @@ class FlipagramIE(InfoExtractor): 'height': int_or_none(cover.get('height')), }) + # Note that this only retrieves comments that are initally loaded. + # For videos with large amounts of comments, most won't be retrieved. comments = [] for comment in user_data.get('comments', {}).get(video_id, {}).get('items', []): text = comment.get('comment', [])