Skip to content

Commit

Permalink
Update streams.py
Browse files Browse the repository at this point in the history
  • Loading branch information
dkasi938 committed Mar 7, 2024
1 parent 71305e5 commit afe6858
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tap_instagram/streams.py
Original file line number Diff line number Diff line change
Expand Up @@ -472,17 +472,17 @@ def _metrics_for_media_type(media_type: str, media_product_type: str):
]
else: # media_product_type is "AD" or "FEED"
metrics = [
"total_interactions",
"impressions",
"reach",
"saved",
]
if media_type == "VIDEO":
metrics.append("video_views")
else:
metrics.append("total_interactions")
return metrics
elif media_type == "CAROUSEL_ALBUM":
return [
"total_interactions",
"impressions",
"reach",
"saved",
Expand Down

0 comments on commit afe6858

Please sign in to comment.