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:
parent
b22fa1dcec
commit
54e1577097
1 changed files with 1 additions and 3 deletions
|
@ -263,9 +263,7 @@ import '../../elements/emby-button/emby-button';
|
||||||
if (totalHours > 0) {
|
if (totalHours > 0) {
|
||||||
result.push(`${totalHours}h`);
|
result.push(`${totalHours}h`);
|
||||||
}
|
}
|
||||||
if (totalMinutes > 0) {
|
|
||||||
result.push(`${remainderMinutes}m`);
|
result.push(`${remainderMinutes}m`);
|
||||||
}
|
|
||||||
miscInfo.push(result.join(' '));
|
miscInfo.push(result.join(' '));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue