mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-02-12 21:29:41 +00:00
Add:Library match all books #359
This commit is contained in:
parent
c953c3dee0
commit
11be49a535
10 changed files with 132 additions and 84 deletions
|
|
@ -26,8 +26,10 @@ class Audible {
|
|||
}
|
||||
|
||||
getBestImageLink(images) {
|
||||
var keys = Object.keys(images);
|
||||
return images[keys[keys.length - 1]];
|
||||
if (!images) return null
|
||||
var keys = Object.keys(images)
|
||||
if (!keys.length) return null
|
||||
return images[keys[keys.length - 1]]
|
||||
}
|
||||
|
||||
getPrimarySeries(series, publication_name) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue