feat: parse language from NFO metadata source

This commit is contained in:
Alex 2024-07-17 11:50:27 -04:00 committed by GitHub
parent 37ad1cced2
commit 9a697f48db
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 18 additions and 0 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
}
}
})