mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-08-01 00:35:07 +02:00
Update:Manual match tab prefer using ASIN with audible providers #1352
This commit is contained in:
parent
b305cfd268
commit
8fa8360e99
1 changed files with 6 additions and 0 deletions
|
@ -396,6 +396,12 @@ export default {
|
|||
if (this.isPodcast) this.provider = 'itunes'
|
||||
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) {
|
||||
this.submitSearch()
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue