Thumbnail

rani/matterbridge.git

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

commit de82c8a4aa1543ea89d6782b2186534d880995ac Author: Wim <wim@42.be> Date: Sat Nov 04 15:01:03 2017 +0000 Fix missing arg for Errorf diff --git a/bridge/telegram/telegram.go b/bridge/telegram/telegram.go index 917fc86..fa493c2 100644 --- a/bridge/telegram/telegram.go +++ b/bridge/telegram/telegram.go @@ -1117 +1117 @@ func (b *Btelegram) Send(msg config.Message) (string, error) {   }   _, err := b.c.Send(c)   if err != nil { - log.Errorf("file upload failed: %#v") + log.Errorf("file upload failed: %#v", err)   }   }   }