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

Merge pull request #2496 from thornbill/logos-without-backdrops

Allow logos without backdrops enabled
This commit is contained in:
Bill Thornton 2021-03-09 16:39:55 -05:00 committed by GitHub
commit 6407128575
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -745,9 +745,7 @@ function renderLogo(page, item, apiClient) {
const url = logoImageUrl(item, apiClient, {});
if (!layoutManager.mobile && !userSettings.enableBackdrops()) {
detailLogo.classList.add('hide');
} else if (url) {
if (url) {
detailLogo.classList.remove('hide');
imageLoader.setLazyImage(detailLogo, url);
} else {