From 2c0ca5182abe8dc28aafb9e674930791dc6cf6ad Mon Sep 17 00:00:00 2001 From: iequidoo Date: Sun, 22 Dec 2024 21:24:12 -0300 Subject: [PATCH] fix(rpc-client): Add INCOMING_REACTION to const.EventType (#6349) --- deltachat-rpc-client/src/deltachat_rpc_client/const.py | 1 + 1 file changed, 1 insertion(+) diff --git a/deltachat-rpc-client/src/deltachat_rpc_client/const.py b/deltachat-rpc-client/src/deltachat_rpc_client/const.py index f2542f0eef..5268a281c6 100644 --- a/deltachat-rpc-client/src/deltachat_rpc_client/const.py +++ b/deltachat-rpc-client/src/deltachat_rpc_client/const.py @@ -41,6 +41,7 @@ class EventType(str, Enum): REACTIONS_CHANGED = "ReactionsChanged" INCOMING_MSG = "IncomingMsg" INCOMING_MSG_BUNCH = "IncomingMsgBunch" + INCOMING_REACTION = "IncomingReaction" MSGS_NOTICED = "MsgsNoticed" MSG_DELIVERED = "MsgDelivered" MSG_FAILED = "MsgFailed"