fix: Use correct image for logo in native player

This commit is contained in:
PartyDonut 2025-10-16 23:13:41 +02:00
parent 2ce13cbd09
commit 37496f87e3

View file

@ -240,7 +240,7 @@ class ItemBaseModel with ItemBaseModelMappable {
title: title, title: title,
subTitle: context != null ? label(context) : null, subTitle: context != null ? label(context) : null,
overview: overview.summary, overview: overview.summary,
logoUrl: images?.logo?.path, logoUrl: getPosters?.logo?.path ?? images?.logo?.path,
primaryPoster: images?.primary?.path ?? getPosters?.primary?.path ?? "", primaryPoster: images?.primary?.path ?? getPosters?.primary?.path ?? "",
); );
} }