mirror of
https://github.com/Radarr/Radarr
synced 2026-04-21 18:11:36 +02:00
Protect against undefined SizeOnDisk
Fixes #5205 Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
This commit is contained in:
parent
37c9701237
commit
0086e2699e
1 changed files with 1 additions and 1 deletions
|
|
@ -549,7 +549,7 @@ class MovieDetails extends Component {
|
|||
>
|
||||
<span className={styles.sizeOnDisk}>
|
||||
{
|
||||
formatBytes(sizeOnDisk)
|
||||
formatBytes(sizeOnDisk || 0)
|
||||
}
|
||||
</span>
|
||||
</InfoLabel>
|
||||
|
|
|
|||
Loading…
Reference in a new issue