mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-11-21 13:32:58 -05:00
CoverSearchManager: Fix broken podcast cover search
This commit is contained in:
parent
3f6162f53c
commit
0a82d6a41b
@ -224,6 +224,9 @@ class CoverSearchManager {
|
||||
if (!Array.isArray(results)) return covers
|
||||
|
||||
results.forEach((result) => {
|
||||
if (typeof result === 'string') {
|
||||
covers.push(result)
|
||||
}
|
||||
if (result.covers && Array.isArray(result.covers)) {
|
||||
covers.push(...result.covers)
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user