forked from kevadesu/forgejo
[GITEA] Add ThreadID parameter for Telegram webhooks
(cherry picked from commit29d77def40
) (cherry picked from commitc758aa56a2
) (cherry picked from commit21c3477875
)
This commit is contained in:
parent
0fcfb355af
commit
7553b69bea
5 changed files with 9 additions and 1 deletions
|
@ -425,12 +425,13 @@ func telegramHookParams(ctx *context.Context) webhookParams {
|
|||
|
||||
return webhookParams{
|
||||
Type: webhook_module.TELEGRAM,
|
||||
URL: fmt.Sprintf("https://api.telegram.org/bot%s/sendMessage?chat_id=%s", url.PathEscape(form.BotToken), url.QueryEscape(form.ChatID)),
|
||||
URL: fmt.Sprintf("https://api.telegram.org/bot%s/sendMessage?chat_id=%s&message_thread_id=%s", url.PathEscape(form.BotToken), url.QueryEscape(form.ChatID), url.QueryEscape(form.ThreadID)),
|
||||
ContentType: webhook.ContentTypeJSON,
|
||||
WebhookForm: form.WebhookForm,
|
||||
Meta: &webhook_service.TelegramMeta{
|
||||
BotToken: form.BotToken,
|
||||
ChatID: form.ChatID,
|
||||
ThreadID: form.ThreadID,
|
||||
},
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue