Skip to content

Commit

Permalink
[EVOLTUION] ignore also button response
Browse files Browse the repository at this point in the history
  • Loading branch information
dudanogueira committed May 3, 2024
1 parent adfbd42 commit ed5fdbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rocket_connect/plugins/evolution.py
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@ def incoming(self):
if self.message.get("event") == "messages.upsert":

# ignore buttons message
if self.message.get("data").get("messageType") == "buttonsMessage":
if self.message.get("data").get("messageType") in ["buttonsMessage", "buttonsResponseMessage"]:
return JsonResponse({"message": "Buttons not supported"})

department = None
Expand Down

0 comments on commit ed5fdbe

Please sign in to comment.