Closed swbartosz closed 6 months ago
I have issue for Failed to get updates: Decode("Error(\"missing field message_id
\", line: 2, column: 746) :
hello @Programistich . what kind of update it's failing for?
@Programistich shared the json response that was failing. the issue is message_id should be optional in ExternalReplyInfo
struct. (thanks!)
will make a pr with a fix now
Example of update that contains a ChatMemberRestricted:
returns with:
Decode("Error(\"missing field
status\", line: 2, column: 923)
(column 923 being around the end).Seems like the issue is caused by
ChatMemberRestricted
having astatus
field. No otherChatMember*
has thestatus
field. Removing it seems to work.