Skip to content

Commit

Permalink
fix: address push for shopping list changes
Browse files Browse the repository at this point in the history
Closes #534
  • Loading branch information
alandtse committed Jan 20, 2020
1 parent 31db58f commit 3325fa1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion custom_components/alexa_media/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -883,7 +883,10 @@ async def ws_handler(message_obj):
f"{DOMAIN}_{hide_email(email)}"[0:32],
{"notification_update": json_payload},
)
elif command in ["PUSH_DELETE_DOPPLER_ACTIVITIES"]:
elif command in [
"PUSH_DELETE_DOPPLER_ACTIVITIES", # delete Alexa history
"PUSH_LIST_ITEM_CHANGE", # update shopping list
]:
pass
else:
_LOGGER.warning(
Expand Down

0 comments on commit 3325fa1

Please sign in to comment.