From 54e1577097c4eef7bdfd54ac8ecb477c7084422a Mon Sep 17 00:00:00 2001 From: Bill Thornton Date: Wed, 8 Sep 2021 13:01:09 -0400 Subject: [PATCH] Remove length check that should always be true --- src/components/mediainfo/mediainfo.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/components/mediainfo/mediainfo.js b/src/components/mediainfo/mediainfo.js index 7ee1e0fb4..64dd52141 100644 --- a/src/components/mediainfo/mediainfo.js +++ b/src/components/mediainfo/mediainfo.js @@ -263,9 +263,7 @@ import '../../elements/emby-button/emby-button'; if (totalHours > 0) { result.push(`${totalHours}h`); } - if (totalMinutes > 0) { - result.push(`${remainderMinutes}m`); - } + result.push(`${remainderMinutes}m`); miscInfo.push(result.join(' ')); } }