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