Skip to content

Commit

Permalink
[instagram] recognize 'reels' as option for 'include' (#1329)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikf committed Mar 6, 2021
1 parent 94faf8c commit a677123
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
1 change: 1 addition & 0 deletions gallery_dl/extractor/instagram.py
Original file line number Diff line number Diff line change
Expand Up @@ -384,6 +384,7 @@ def items(self):
(InstagramStoriesExtractor , stories),
(InstagramHighlightsExtractor, base + "highlights/"),
(InstagramPostsExtractor , base + "posts/"),
(InstagramReelsExtractor , base + "reels/"),
(InstagramChannelExtractor , base + "channel/"),
), ("posts",))

Expand Down

0 comments on commit a677123

Please sign in to comment.