fix: downloaded media detail screen clear logo

This commit is contained in:
edde746
2026-02-14 19:28:43 +01:00
parent 6f027f1015
commit fb9a1cd77e
2 changed files with 8 additions and 3 deletions
+1 -1
View File
@@ -119,7 +119,7 @@ class PlexApiCache {
final cached = await get(serverId, '/library/metadata/$ratingKey');
final json = PlexCacheParser.extractFirstMetadata(cached);
if (json == null) return null;
return PlexMetadata.fromJson(json).copyWith(serverId: serverId);
return PlexMetadata.fromJsonWithImages(json).copyWith(serverId: serverId);
}
/// Clear all cached data (useful for debugging/testing)