Thumbnail

rani/matterbridge.git

Clone URL: https://git.buni.party/rani/matterbridge.git

commit e7e3373ed8144150b63c86c8153e8fec5f81c6b3 Author: Wim <wim@42.be> Date: Thu Jun 13 23:22:02 2019 +0000 Revert xmpp to orig behaviour. Closes #844 diff --git a/bridge/xmpp/xmpp.go b/bridge/xmpp/xmpp.go index 6636808..c5d5e18 100644 --- a/bridge/xmpp/xmpp.go +++ b/bridge/xmpp/xmpp.go @@ -3325 +3325 @@ func (b *Bxmpp) skipMessage(message xmpp.Chat) bool {   }     // skip delayed messages - return message.Stamp.IsZero() + return !message.Stamp.IsZero()  }