mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Adapt to server-side API change, fix People cards
This commit is contained in:
parent
f3129f28ef
commit
5d617d8102
2 changed files with 5 additions and 2 deletions
|
@ -613,9 +613,11 @@ import 'programStyles';
|
|||
});
|
||||
}
|
||||
|
||||
let blurHashes = options.imageBlurhashes || item.ImageBlurHashes || {};
|
||||
|
||||
return {
|
||||
imgUrl: imgUrl,
|
||||
blurhash: item.ImageBlurHashes[imgTag] || null,
|
||||
blurhash: (blurHashes[imgType] || {})[imgTag] || null,
|
||||
forceName: forceName,
|
||||
coverImage: coverImage
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue