diff options
author | Liam Stanley <me@liamstanley.io> | 2018-06-09 06:47:40 -0400 |
---|---|---|
committer | Wim <wim@42.be> | 2018-06-09 12:47:40 +0200 |
commit | 51327a405651442ac47c4ce75363442fa323b592 (patch) | |
tree | 4011309b5c748f7e5e717a5a7fc62a4026c6f421 /bridge/helper | |
parent | 33bd60528be4eaf28ffd1065517ea41fde9ea62b (diff) | |
download | matterbridge-msglm-51327a405651442ac47c4ce75363442fa323b592.tar.gz matterbridge-msglm-51327a405651442ac47c4ce75363442fa323b592.tar.bz2 matterbridge-msglm-51327a405651442ac47c4ce75363442fa323b592.zip |
Reconnect on quit. (irc) See #431 (#445)
* potential fixes for #431
* go: fix formatting/gofmt/goreturns
Diffstat (limited to 'bridge/helper')
-rw-r--r-- | bridge/helper/helper.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bridge/helper/helper.go b/bridge/helper/helper.go index c4ac0ae2..a3f4255c 100644 --- a/bridge/helper/helper.go +++ b/bridge/helper/helper.go @@ -3,12 +3,13 @@ package helper import ( "bytes" "fmt" - "github.com/42wim/matterbridge/bridge/config" - log "github.com/sirupsen/logrus" "io" "net/http" "strings" "time" + + "github.com/42wim/matterbridge/bridge/config" + log "github.com/sirupsen/logrus" ) func DownloadFile(url string) (*[]byte, error) { |