1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Merge pull request #2514 from oddstr13/image-fill-resize

Add support for fillWidth and fillHeight
This commit is contained in:
Bill Thornton 2021-04-11 12:30:06 -04:00 committed by GitHub
commit 2c85b7806b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 11 additions and 9 deletions

View file

@ -446,7 +446,7 @@ class AppRouter {
normalizeImageOptions(options) {
let setQuality;
if (options.maxWidth || options.width || options.maxHeight || options.height) {
if (options.maxWidth || options.width || options.maxHeight || options.height || options.fillWidth || options.fillHeight) {
setQuality = true;
}