summaryrefslogtreecommitdiffstats
path: root/vendor
diff options
context:
space:
mode:
authorGary Kim <gary@garykim.dev>2020-09-04 16:14:36 -0400
committerGitHub <noreply@github.com>2020-09-04 22:14:36 +0200
commit75f67d2de41de063c1fdfaee349b11929eca47eb (patch)
tree43539f62100ef52a874139225b9980388a230073 /vendor
parent712385ffd58ad01d1c257b63a7b0299134d95209 (diff)
downloadmatterbridge-msglm-75f67d2de41de063c1fdfaee349b11929eca47eb.tar.gz
matterbridge-msglm-75f67d2de41de063c1fdfaee349b11929eca47eb.tar.bz2
matterbridge-msglm-75f67d2de41de063c1fdfaee349b11929eca47eb.zip
Update nc-talk dependency (#1226)
Diffstat (limited to 'vendor')
-rw-r--r--vendor/gomod.garykim.dev/nc-talk/CHANGELOG.md8
-rw-r--r--vendor/gomod.garykim.dev/nc-talk/room/room.go3
-rw-r--r--vendor/modules.txt2
3 files changed, 12 insertions, 1 deletions
diff --git a/vendor/gomod.garykim.dev/nc-talk/CHANGELOG.md b/vendor/gomod.garykim.dev/nc-talk/CHANGELOG.md
index 55e2cf03..987b0e19 100644
--- a/vendor/gomod.garykim.dev/nc-talk/CHANGELOG.md
+++ b/vendor/gomod.garykim.dev/nc-talk/CHANGELOG.md
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
+## [v0.1.3](https://github.com/gary-kim/go-nc-talk/tree/v0.1.3) - 2020-09-03
+
+[Full Changelog](https://github.com/gary-kim/go-nc-talk/compare/v0.1.2...v0.1.3)
+
+### Fixed
+
+- Close response bodies [\#15](https://github.com/gary-kim/go-nc-talk/pull/15) ([@gary-kim](https://github.com/gary-kim))
+
## [v0.1.2](https://github.com/gary-kim/go-nc-talk/tree/v0.1.2) - 2020-08-28
[Full Changelog](https://github.com/gary-kim/go-nc-talk/compare/v0.1.1...v0.1.2)
diff --git a/vendor/gomod.garykim.dev/nc-talk/room/room.go b/vendor/gomod.garykim.dev/nc-talk/room/room.go
index 3527bb7a..b53b01fc 100644
--- a/vendor/gomod.garykim.dev/nc-talk/room/room.go
+++ b/vendor/gomod.garykim.dev/nc-talk/room/room.go
@@ -130,6 +130,7 @@ func (t *TalkRoom) ReceiveMessages(ctx context.Context) (chan ocs.TalkRoomMessag
if res.StatusCode == 200 {
lastKnown = res.Header.Get("X-Chat-Last-Given")
data, err := ioutil.ReadAll(res.Body)
+ _ = res.Body.Close()
if err != nil {
continue
}
@@ -140,7 +141,9 @@ func (t *TalkRoom) ReceiveMessages(ctx context.Context) (chan ocs.TalkRoomMessag
for _, msg := range message.OCS.TalkRoomMessage {
c <- msg
}
+ continue
}
+ _ = res.Body.Close()
}
}()
return c, nil
diff --git a/vendor/modules.txt b/vendor/modules.txt
index 65810bd7..a1a92e16 100644
--- a/vendor/modules.txt
+++ b/vendor/modules.txt
@@ -291,7 +291,7 @@ golang.org/x/text/secure/bidirule
golang.org/x/text/transform
golang.org/x/text/unicode/bidi
golang.org/x/text/unicode/norm
-# gomod.garykim.dev/nc-talk v0.1.2
+# gomod.garykim.dev/nc-talk v0.1.3
gomod.garykim.dev/nc-talk
gomod.garykim.dev/nc-talk/constants
gomod.garykim.dev/nc-talk/ocs