diff --git a/app/src/main/java/com/github/damontecres/wholphin/data/model/BaseItem.kt b/app/src/main/java/com/github/damontecres/wholphin/data/model/BaseItem.kt index 7386bd60..e8f3f096 100644 --- a/app/src/main/java/com/github/damontecres/wholphin/data/model/BaseItem.kt +++ b/app/src/main/java/com/github/damontecres/wholphin/data/model/BaseItem.kt @@ -111,7 +111,7 @@ data class BaseItem( api.imageApi.getItemImageUrl(dto.id, ImageType.PRIMARY) } val logoImageUrl = - if (useSeriesForPrimary && (dto.type == BaseItemKind.EPISODE || dto.type == BaseItemKind.SEASON)) { + if (dto.type == BaseItemKind.EPISODE || dto.type == BaseItemKind.SEASON) { val seriesId = dto.seriesId if (seriesId != null) { api.imageApi.getItemImageUrl(seriesId, ImageType.LOGO)