Skip to content

Commit

Permalink
fix: MQ instead of SD for rectangular thumbnails. (#127)
Browse files Browse the repository at this point in the history
  • Loading branch information
KararTY committed Apr 24, 2021
1 parent 51ef5a0 commit 024e378
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

- Youtube thumbnails are now in medium quality instead of standard definition to get a rectangular shaped image. (#127)

## 1.0.1

- Dev: You can now set the Base URL flag with the `CHATTERINO_API_BASE_URL` environment variable. (#123)
Expand Down
4 changes: 2 additions & 2 deletions internal/resolvers/youtube/load.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ func load(videoID string, r *http.Request) (interface{}, time.Duration, error) {
}

thumbnail := video.Snippet.Thumbnails.Default.Url
if video.Snippet.Thumbnails.Standard != nil {
thumbnail = video.Snippet.Thumbnails.Standard.Url
if video.Snippet.Thumbnails.Medium != nil {
thumbnail = video.Snippet.Thumbnails.Medium.Url
}

return &resolver.Response{
Expand Down

0 comments on commit 024e378

Please sign in to comment.