1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Remove length check that should always be true

This commit is contained in:
Bill Thornton 2021-09-08 13:01:09 -04:00
parent b22fa1dcec
commit 54e1577097

View file

@ -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(' '));
}
}