Skip to content

Commit

Permalink
Merge pull request #72 from projectmovio/fix-invalid-show-property
Browse files Browse the repository at this point in the history
Get show id not item_id
  • Loading branch information
fulder authored Oct 21, 2021
2 parents b59af10 + feb285d commit 5e6521c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lambdas/subscribers/show_updates/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def handle(event, context):
message["api_id"],
)

items = watch_history_db.get_items_by_id(show["item_id"])
items = watch_history_db.get_items_by_id(show["id"])
for item in items:
print(f"Updating item: {item}")

Expand Down

0 comments on commit 5e6521c

Please sign in to comment.