This commit is contained in:
advplyr
2024-07-18 16:43:10 -05:00
3 changed files with 29 additions and 11 deletions

View File

@@ -81,6 +81,10 @@ function parseNfoMetadata(nfoText) {
case 'isbn-13':
metadata.isbn = value
break
case 'language':
case 'lang':
metadata.language = value
break
}
}
})