Skip to content

Commit

Permalink
build(deps): bump github.com/nicklaw5/helix/v2 from 2.28.2 to 2.28.3 (#…
Browse files Browse the repository at this point in the history
…1188)

* build(deps): bump github.com/nicklaw5/helix/v2 from 2.28.2 to 2.28.3

Bumps [github.com/nicklaw5/helix/v2](https://github.com/nicklaw5/helix) from 2.28.2 to 2.28.3.
- [Release notes](https://github.com/nicklaw5/helix/releases)
- [Commits](nicklaw5/helix@v2.28.2...v2.28.3)

---
updated-dependencies:
- dependency-name: github.com/nicklaw5/helix/v2
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* fix: UserID is now a list of strings in the helix library

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Rasmus Karlsson <[email protected]>
  • Loading branch information
dependabot[bot] and pajlada authored May 18, 2024
1 parent eb4546d commit eb3b025
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ require (
github.com/gorilla/websocket v1.5.1
github.com/labstack/echo/v4 v4.12.0
github.com/lib/pq v1.10.9
github.com/nicklaw5/helix/v2 v2.28.2
github.com/nicklaw5/helix/v2 v2.28.3
github.com/pajbot/commandmatcher v1.0.1
github.com/pajbot/utils v1.0.0
github.com/pajlada/go-twitch-pubsub v0.1.1
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovk
github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM=
github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY=
github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y=
github.com/nicklaw5/helix/v2 v2.28.2 h1:bHOWU341GS+Jv73EKGv7BB4T/M4RKR/umxDBOr+MdjI=
github.com/nicklaw5/helix/v2 v2.28.2/go.mod h1:zZcKsyyBWDli34x3QleYsVMiiNGMXPAEU5NjsiZDtvY=
github.com/nicklaw5/helix/v2 v2.28.3 h1:hpy+VxMhEgDCoh8wAUS3mIqUYh0KcfJnd8w8uUOjZ3Y=
github.com/nicklaw5/helix/v2 v2.28.3/go.mod h1:zZcKsyyBWDli34x3QleYsVMiiNGMXPAEU5NjsiZDtvY=
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno=
github.com/pajbot/commandmatcher v1.0.1 h1:C45KmJezhaBKuPUQLDyLjvcMXrQ7pofhk7jVgAdp2vU=
github.com/pajbot/commandmatcher v1.0.1/go.mod h1:kZzeHeGqmDvWxQP3pB6KrvaPbMEVIyeJycMoQpkpOZ0=
Expand Down
2 changes: 1 addition & 1 deletion pkg/apirequest/twitchwrapper.go
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ func (w *HelixWrapper) GetBannedUser(channelID string, userID string) (*helix.Ba

resp, err := w.Client.GetBannedUsers(&helix.BannedUsersParams{
BroadcasterID: channelID,
UserID: userID,
UserID: []string{userID},
})

if err != nil {
Expand Down

0 comments on commit eb3b025

Please sign in to comment.