Update:Manual match tab prefer using ASIN with audible providers #1352

This commit is contained in:
advplyr 2023-01-07 16:22:59 -06:00
parent b305cfd268
commit 8fa8360e99

View File

@ -396,6 +396,12 @@ export default {
if (this.isPodcast) this.provider = 'itunes' if (this.isPodcast) this.provider = 'itunes'
else this.provider = localStorage.getItem('book-provider') || 'google' else this.provider = localStorage.getItem('book-provider') || 'google'
// Prefer using ASIN if set and using audible provider
if (this.provider.startsWith('audible') && this.libraryItem.media.metadata.asin) {
this.searchTitle = this.libraryItem.media.metadata.asin
this.searchAuthor = ''
}
if (this.searchTitle) { if (this.searchTitle) {
this.submitSearch() this.submitSearch()
} }