1
0
mirror of synced 2024-11-21 20:46:05 +03:00

Merge pull request #5 from gwinn/master

fix for webhook struct
This commit is contained in:
Alex Lushpai 2018-05-29 13:52:50 +03:00 committed by GitHub
commit 0820026dc5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -106,7 +106,7 @@ type WebhookData struct {
ExternalUserID string `json:"external_user_id"`
ExternalMessageID string `json:"external_message_id,omitempty"`
ChannelID uint64 `json:"channel_id"`
ChatID int64 `json:"channel_id"` // TODO: add to webhook request
ChatID int64 `json:"chat_id"` // TODO: add to webhook request
Content string `json:"content"`
QuoteMessageExternalID string `json:"quote_message_external_id,omitempty"`
}