Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: MQ instead of SD for rectangular thumbnails. #127

Merged
merged 2 commits into from
Apr 24, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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