mirror of
https://github.com/lidarr/Lidarr
synced 2025-01-01 12:34:40 +00:00
Only use resized posters when the images are served from Sonarr.
This commit is contained in:
parent
23205574a3
commit
7c38fcb9f3
1 changed files with 5 additions and 1 deletions
|
@ -11,7 +11,11 @@ define(
|
||||||
var poster = _.where(this.images, {coverType: 'poster'});
|
var poster = _.where(this.images, {coverType: 'poster'});
|
||||||
|
|
||||||
if (poster[0]) {
|
if (poster[0]) {
|
||||||
return new Handlebars.SafeString('<img class="series-poster" {0}>'.format(Handlebars.helpers.defaultImg.call(null, poster[0].url, 250)));
|
if (!poster[0].url.match(/^https?:\/\//)) {
|
||||||
|
return new Handlebars.SafeString('<img class="series-poster" {0}>'.format(Handlebars.helpers.defaultImg.call(null, poster[0].url, 250)));
|
||||||
|
} else {
|
||||||
|
return new Handlebars.SafeString('<img class="series-poster" {0}>'.format(Handlebars.helpers.defaultImg.call(null, poster[0].url)));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return new Handlebars.SafeString('<img class="series-poster placeholder-image" src="{0}">'.format(placeholder));
|
return new Handlebars.SafeString('<img class="series-poster placeholder-image" src="{0}">'.format(placeholder));
|
||||||
|
|
Loading…
Reference in a new issue