[instagram] recognize 'reels' as option for 'include' (#1329)

This commit is contained in:
Mike Fährmann 2021-03-06 18:50:19 +01:00
parent 94faf8c85a
commit a677123abb
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88
2 changed files with 2 additions and 1 deletions

View File

@ -1113,7 +1113,7 @@ Description
when processing a user profile.
Possible values are
``"posts"``, ``"stories"``, ``"highlights"``, ``"channel"``.
``"posts"``, ``reels``, ``"stories"``, ``"highlights"``, ``"channel"``.
You can use ``"all"`` instead of listing all values separately.

View File

@ -384,6 +384,7 @@ class InstagramUserExtractor(InstagramExtractor):
(InstagramStoriesExtractor , stories),
(InstagramHighlightsExtractor, base + "highlights/"),
(InstagramPostsExtractor , base + "posts/"),
(InstagramReelsExtractor , base + "reels/"),
(InstagramChannelExtractor , base + "channel/"),
), ("posts",))