Do not fail out on undefined cover URLs.
parent
75664529a8
commit
257097c1f6
|
@ -447,7 +447,9 @@
|
|||
.replace(/\b(holland|italy)\b/i, '')
|
||||
.trim()
|
||||
: null,
|
||||
cover: data.cover_url + "?nprandid=" + btoa(id),
|
||||
cover: data.cover_url
|
||||
? data.cover_url + "?nprandid=" + btoa(id)
|
||||
: undefined,
|
||||
});
|
||||
showProgress({
|
||||
id,
|
||||
|
|
Loading…
Reference in New Issue