Fix find error on movie details

pull/5080/head
nitsua 4 years ago committed by ta264
parent d5ec2914e2
commit 6bdd24e62d

@ -49,7 +49,7 @@ const defaultFontSize = parseInt(fonts.defaultFontSize);
const lineHeight = parseFloat(fonts.lineHeight);
function getFanartUrl(images) {
const fanartImage = images.find({ coverType: 'fanart' });
const fanartImage = images.find((i) => i.coverType === 'fanart');
if (fanartImage) {
// Remove protocol
return fanartImage.url.replace(/^https?:/, '');

Loading…
Cancel
Save