From 82396e73f5c4036862009306c0557c13f9cd14ab Mon Sep 17 00:00:00 2001 From: Wim Date: Sun, 25 Feb 2018 00:39:24 +0100 Subject: [PATCH] Allow empty messages with file urls (irc) --- gateway/gateway.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gateway/gateway.go b/gateway/gateway.go index e2db20eb..f11d4dc3 100644 --- a/gateway/gateway.go +++ b/gateway/gateway.go @@ -178,6 +178,7 @@ func (gw *Gateway) handleMessage(msg config.Message, dest *bridge.Bridge) []*BrM dest.Protocol != "telegram" && dest.Protocol != "matrix" && dest.Protocol != "xmpp" && + dest.Protocol != "irc" && len(msg.Extra[config.EVENT_FILE_FAILURE_SIZE]) == 0 { if msg.Text == "" { return brMsgIDs @@ -241,7 +242,7 @@ func (gw *Gateway) handleMessage(msg config.Message, dest *bridge.Bridge) []*BrM } mID, err := dest.Send(msg) if err != nil { - fmt.Println(err) + flog.Error(err) } // append the message ID (mID) from this bridge (dest) to our brMsgIDs slice if mID != "" {