diff options
author | Wim <wim@42.be> | 2019-06-13 23:22:02 +0200 |
---|---|---|
committer | Wim <wim@42.be> | 2019-06-13 23:35:04 +0200 |
commit | 6617bd6609993ab70798647620dfbbcff523347e (patch) | |
tree | 04d04e1d3930ae5664168ac60b5903c8bd9b6ec2 | |
parent | e610fb3201bb233e68d88c1dfcd30d4206e53f22 (diff) | |
download | matterbridge-msglm-6617bd6609993ab70798647620dfbbcff523347e.tar.gz matterbridge-msglm-6617bd6609993ab70798647620dfbbcff523347e.tar.bz2 matterbridge-msglm-6617bd6609993ab70798647620dfbbcff523347e.zip |
Revert xmpp to orig behaviour. Closes #844
-rw-r--r-- | bridge/xmpp/xmpp.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bridge/xmpp/xmpp.go b/bridge/xmpp/xmpp.go index 66368087..c5d5e185 100644 --- a/bridge/xmpp/xmpp.go +++ b/bridge/xmpp/xmpp.go @@ -332,5 +332,5 @@ func (b *Bxmpp) skipMessage(message xmpp.Chat) bool { } // skip delayed messages - return message.Stamp.IsZero() + return !message.Stamp.IsZero() } |