change audio label, 0p > Audio
Changes the audio label in the Download modal.
This commit is contained in:
parent
bd873df064
commit
2a408c40a9
|
@ -212,7 +212,7 @@ function videoFilesModelToFormattedJSON (
|
|||
return {
|
||||
resolution: {
|
||||
id: videoFile.resolution,
|
||||
label: videoFile.resolution + 'p'
|
||||
label: videoFile.resolution === 0 ? 'Audio' : `${videoFile.resolution}p`
|
||||
},
|
||||
|
||||
magnetUri: includeMagnet && videoFile.hasTorrent()
|
||||
|
|
Loading…
Reference in New Issue