5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-11-09 16:50:30 +00:00

Make megacheck happy

This commit is contained in:
Wim 2018-02-27 23:38:36 +01:00
parent 6a727b9723
commit 20dbd71306

View File

@ -234,8 +234,5 @@ func (b *Bxmpp) skipMessage(message xmpp.Chat) bool {
// skip delayed messages
t := time.Time{}
if message.Stamp == t {
return true
}
return false
return message.Stamp == t
}