From 3afa85c218a516afbbc449555e0efe6b4b16d535 Mon Sep 17 00:00:00 2001 From: theguymadmax Date: Fri, 20 Sep 2024 15:52:29 -0400 Subject: [PATCH] Show year for movies in collection --- src/controllers/itemDetails/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controllers/itemDetails/index.js b/src/controllers/itemDetails/index.js index b5cd1848e2d..937c6a61ad9 100644 --- a/src/controllers/itemDetails/index.js +++ b/src/controllers/itemDetails/index.js @@ -1735,7 +1735,7 @@ function renderCollectionItemType(page, parentItem, type, items) { items: items, shape: shape, showTitle: true, - showYear: type.mediaType === 'Video' || type.type === 'Series', + showYear: type.mediaType === 'Video' || type.type === 'Series' || type.type === 'Movie', centerText: true, lazy: true, showDetailsMenu: true,