diff options
Diffstat (limited to 'bridge/xmpp/xmpp.go')
-rw-r--r-- | bridge/xmpp/xmpp.go | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/bridge/xmpp/xmpp.go b/bridge/xmpp/xmpp.go index 4ace2abd..4d6cc3cf 100644 --- a/bridge/xmpp/xmpp.go +++ b/bridge/xmpp/xmpp.go @@ -75,8 +75,6 @@ func (b *Bxmpp) JoinChannel(channel config.ChannelInfo) error { } func (b *Bxmpp) Send(msg config.Message) (string, error) { - var msgid = "" - var msgreplaceid = "" // ignore delete messages if msg.Event == config.EVENT_MSG_DELETE { return "", nil @@ -93,7 +91,8 @@ func (b *Bxmpp) Send(msg config.Message) (string, error) { } } - msgid = xid.New().String() + var msgreplaceid string + msgid := xid.New().String() if msg.ID != "" { msgid = msg.ID msgreplaceid = msg.ID |