Return png from AudiobookCovers.com

Changes AudiobookCovers.com provider to return the full size png file from the server. The original file url has the incorrect content-type header set, which caused issues downloading new cover images.
This commit is contained in:
Spenser Bushey 2024-01-30 09:15:50 -08:00
parent dbad8bdb96
commit 295ca3d9a2

View File

@ -14,7 +14,7 @@ class AudiobookCovers {
Logger.error('[AudiobookCovers] Cover search error', error)
return []
})
return items.map(item => ({ cover: item.filename }))
return items.map(item => ({ cover: item.versions.png.original }))
}
}