mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-12 23:00:26 +00:00
Add support for forwarded messages. Closes #313
This commit is contained in:
parent
d30ae19e2a
commit
e4a0e0a0e9
@ -180,6 +180,24 @@ func (b *Btelegram) handleRecv(updates <-chan tgbotapi.Update) {
|
|||||||
b.handleDownload(message.Document, &fmsg)
|
b.handleDownload(message.Document, &fmsg)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if message.ForwardFrom != nil {
|
||||||
|
text = "Forward from " + message.ForwardFrom.FirstName
|
||||||
|
usernameForward := ""
|
||||||
|
if b.Config.UseFirstName {
|
||||||
|
usernameForward = message.ForwardFrom.FirstName
|
||||||
|
}
|
||||||
|
if usernameForward == "" {
|
||||||
|
usernameForward = message.ForwardFrom.UserName
|
||||||
|
if usernameForward == "" {
|
||||||
|
usernameForward = message.ForwardFrom.FirstName
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if usernameForward == "" {
|
||||||
|
usernameForward = "unknown"
|
||||||
|
}
|
||||||
|
text = "Forwarded from " + usernameForward + ": " + text
|
||||||
|
}
|
||||||
|
|
||||||
// quote the previous message
|
// quote the previous message
|
||||||
if message.ReplyToMessage != nil {
|
if message.ReplyToMessage != nil {
|
||||||
usernameReply := ""
|
usernameReply := ""
|
||||||
|
Loading…
Reference in New Issue
Block a user