This commit is contained in:
Ben Wiederhake 2024-09-03 18:47:27 +00:00 committed by GitHub
commit 85ee2e1183
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 9 additions and 0 deletions

View File

@ -159,6 +159,11 @@ func (b *Btelegram) Send(msg config.Message) (string, error) {
}
// check if we have files to upload (from slack, telegram or mattermost)
if len(msg.Extra["file"]) > 0 {
if b.GetBool("AnnounceFileSender") {
if _, msgErr := b.sendMessage(chatid, topicid, msg.Username, "", parentID); msgErr != nil {
b.Log.Errorf("sendMessage failed: %s", msgErr)
}
}
return b.handleUploadFile(&msg, chatid, topicid, parentID)
}
}

View File

@ -1088,6 +1088,10 @@ ShowTopicChange=false
#OPTIONAL (default false)
PreserveThreading=false
#Send an extra message indicating the sender for files.
#OPTIONAL (default false)
AnnounceFileSender=false
###################################################################
#rocketchat section
###################################################################