Skip to content

Commit

Permalink
Fix 7tv emote resolving again (#288)
Browse files Browse the repository at this point in the history
  • Loading branch information
pajlada committed Mar 20, 2022
1 parent eecd085 commit 0362f87
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Unreleased

- Breaking: Resolver caches are now stored in PostgreSQL. See [docs/build.md](./docs/build.md) for prerequisite instructions. (#271)
- Fix: SevenTV emotes now resolve correctly. (#281)
- Fix: SevenTV emotes now resolve correctly. (#281, #288)
- Fix: YouTube videos are no longer resolved as channels. (#284)
- Dev: Improve BetterTTV emote tests. (#282)
- Minor: BetterTTV cache key changed from plural to singular form. (#282)
Expand Down
2 changes: 1 addition & 1 deletion internal/resolvers/seventv/initialize.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ var (
)

func Initialize(ctx context.Context, cfg config.APIConfig, pool db.Pool, resolvers *[]resolver.Resolver) {
apiURL := utils.MustParseURL("https://7v.app/v2/gql")
apiURL := utils.MustParseURL("https://7tv.app/v2/gql")

*resolvers = append(*resolvers, NewEmoteResolver(ctx, cfg, pool, apiURL))
}

0 comments on commit 0362f87

Please sign in to comment.