Parse NFO trim final parsed description

This commit is contained in:
advplyr 2023-11-26 14:33:35 -06:00
parent 36e00e8d6a
commit d9584174ff

View File

@ -60,7 +60,7 @@ function parseNfoMetadata(nfoText) {
metadata.publishedYear = year
}
}
break;
break
case 'position in series':
metadata.sequence = value
break
@ -84,6 +84,12 @@ function parseNfoMetadata(nfoText) {
}
}
})
// Trim leading/trailing whitespace for description
if (metadata.description) {
metadata.description = metadata.description.trim()
}
return metadata
}
module.exports = { parseNfoMetadata }