Revert "Use useSeriesForPrimary"

This reverts commit f5f75f9e9e8f3316c689b85d3b8781c932a7c0ff.
This commit is contained in:
Damontecres 2025-11-17 16:12:59 -05:00
parent a9f2e684f1
commit 037e846599
No known key found for this signature in database

View file

@ -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)