Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion instagrapi/mixins/clip.py
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ def clip_configure(
Dict
A dictionary of response from the call
"""
self.photo_rupload(Path(thumbnail), upload_id)
self.photo_rupload(Path(thumbnail), upload_id, for_story=True)
usertags = [
{"user_id": tag.user.pk, "position": [tag.x, tag.y]} for tag in usertags
]
Expand Down
2 changes: 1 addition & 1 deletion instagrapi/mixins/video.py
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ def video_configure(
Dict
A dictionary of response from the call
"""
self.photo_rupload(Path(thumbnail), upload_id)
self.photo_rupload(Path(thumbnail), upload_id, for_story=True)
usertags = [
{"user_id": tag.user.pk, "position": [tag.x, tag.y]} for tag in usertags
]
Expand Down