From 49c02fad69e646d5af6097535f191c3e8528a727 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sun, 13 Oct 2013 14:35:28 -0400 Subject: [PATCH] restrict person updates to 14 days --- dashboard-ui/scripts/edititemmetadata.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard-ui/scripts/edititemmetadata.js b/dashboard-ui/scripts/edititemmetadata.js index fd61e2945e..d626e85615 100644 --- a/dashboard-ui/scripts/edititemmetadata.js +++ b/dashboard-ui/scripts/edititemmetadata.js @@ -33,7 +33,7 @@ } if (!item.BackdropImageTags || !item.BackdropImageTags.length) { - if (item.Type !== "Episode") { + if (item.Type !== "Episode" && item.Type !== "Season" && item.MediaType !== "Audio") { htmlName += ''; } }