5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-19 21:32:31 +00:00

Fix incorrect skipmessage (xmpp)

This commit is contained in:
Wim 2018-03-05 00:36:54 +01:00
parent 98027446c8
commit 16be6601c8

View File

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