Skip to content

Commit

Permalink
Fix file extension for image thumbnails
Browse files Browse the repository at this point in the history
  • Loading branch information
floscher committed Apr 17, 2017
1 parent da57005 commit a11c384
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ private Cloudfront() {
}

public static URL thumbnail(final String key, final boolean large) {
return string2URL(BASE_URL, key, "/thumb-", large ? "2048" : "320", ".png");
return string2URL(BASE_URL, key, "/thumb-", large ? "2048" : "320", ".jpg");
}
}

Expand Down

0 comments on commit a11c384

Please sign in to comment.