mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-04-25 01:16:40 +02:00
Update:Manual match tab prefer using ASIN with audible providers #1352
This commit is contained in:
parent
b305cfd268
commit
8fa8360e99
@ -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()
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user