Fix lint errors

This commit is contained in:
Borewit
2017-09-17 22:14:07 +02:00
parent 83350b3b57
commit 6aa3a6c660

View File

@@ -221,10 +221,12 @@ function renderAudioMetadata (state) {
if (common.label || common.catalognumber) {
album += ', '
let releaseInfo = []
if(common.label)
if (common.label) {
releaseInfo.push(common.label)
if(common.catalognumber)
}
if (common.catalognumber) {
releaseInfo.push(common.catalognumber)
}
album += releaseInfo.join(' / ')
}
}