mirror of
https://github.com/42wim/matterbridge
synced 2024-11-03 15:40:24 +00:00
Add support for file comments (slack). Closes #346
This commit is contained in:
parent
67f6257617
commit
78f1011f52
@ -340,7 +340,7 @@ func (b *Bslack) handleSlackClient(mchan chan *MMMessage) {
|
||||
continue
|
||||
}
|
||||
m := &MMMessage{}
|
||||
if ev.BotID == "" && ev.SubType != "message_deleted" {
|
||||
if ev.BotID == "" && ev.SubType != "message_deleted" && ev.SubType != "file_comment" {
|
||||
user, err := b.rtm.GetUserInfo(ev.User)
|
||||
if err != nil {
|
||||
continue
|
||||
@ -380,6 +380,11 @@ func (b *Bslack) handleSlackClient(mchan chan *MMMessage) {
|
||||
m.UserID = bot.ID
|
||||
}
|
||||
}
|
||||
|
||||
if ev.SubType == "file_comment" {
|
||||
m.Username = "system"
|
||||
}
|
||||
|
||||
mchan <- m
|
||||
case *slack.OutgoingErrorEvent:
|
||||
flog.Debugf("%#v", ev.Error())
|
||||
|
Loading…
Reference in New Issue
Block a user