mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-06-07 19:22:43 +02:00
Add:Language and ASIN id3 tag parse, language filter, asin search, asin audible match, add fields to details #305
This commit is contained in:
@@ -187,7 +187,8 @@ export const mutations = {
|
||||
genres: [],
|
||||
tags: [],
|
||||
series: [],
|
||||
narrators: []
|
||||
narrators: [],
|
||||
languages: []
|
||||
}
|
||||
*/
|
||||
|
||||
@@ -218,5 +219,8 @@ export const mutations = {
|
||||
if (genre && !state.filterData.genres.includes(genre)) state.filterData.genres.push(genre)
|
||||
})
|
||||
}
|
||||
if (audiobook.book.language && !state.filterData.languages.includes(audiobook.book.language)) {
|
||||
state.filterData.languages.push(audiobook.book.language)
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user