Fix audio format metadata
This commit is contained in:
parent
fce0003912
commit
3dcab9e78b
1 changed files with 2 additions and 2 deletions
|
|
@ -285,10 +285,10 @@ function renderAudioMetadata (state) {
|
|||
if (fileSummary.audioInfo.format.bitsPerSample) {
|
||||
format.push(fileSummary.audioInfo.format.bitsPerSample + ' bit')
|
||||
}
|
||||
if (format.size > 0) {
|
||||
if (format.length > 0) {
|
||||
elems.push((
|
||||
<div key='format' className='audio-format'>
|
||||
<label>Format</label>{format}
|
||||
<label>Format</label>{ format.join(', ') }
|
||||
</div>
|
||||
))
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue