Skip to content

Commit

Permalink
Merge pull request #146 from pycontw/feat_add_fb_insight
Browse files Browse the repository at this point in the history
fix message error
  • Loading branch information
xchwan authored Aug 17, 2024
2 parents eb5d18e + 2db0950 commit 0ac0b7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dags/ods/fb_post_insights/udfs.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def save_fb_posts_and_insights() -> None:
{
"id": post["id"],
"created_at": convert_fb_time(post["created_time"]),
"message": post["message"],
"message": post.get("message", "No message found"),
}
for post in new_posts
]
Expand Down

0 comments on commit 0ac0b7f

Please sign in to comment.