Fix telegram bot thread_id key error (#120613)
This commit is contained in:
parent
6bceb8ec48
commit
1973c604b6
1 changed files with 1 additions and 1 deletions
|
@ -702,7 +702,7 @@ class TelegramNotificationService:
|
|||
}
|
||||
if message_tag is not None:
|
||||
event_data[ATTR_MESSAGE_TAG] = message_tag
|
||||
if kwargs_msg[ATTR_MESSAGE_THREAD_ID] is not None:
|
||||
if kwargs_msg.get(ATTR_MESSAGE_THREAD_ID) is not None:
|
||||
event_data[ATTR_MESSAGE_THREAD_ID] = kwargs_msg[
|
||||
ATTR_MESSAGE_THREAD_ID
|
||||
]
|
||||
|
|
Loading…
Add table
Reference in a new issue