From 530b561114b753ed4fcdfe9a698c62b7eccde5e7 Mon Sep 17 00:00:00 2001 From: "(quasar) nebula" Date: Wed, 3 Mar 2021 13:30:47 -0400 Subject: fix "false" showing up in artist strings, oops --- upd8.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/upd8.js b/upd8.js index 3054585..3527919 100755 --- a/upd8.js +++ b/upd8.js @@ -4555,7 +4555,7 @@ function getArtistString(artists, {strings, to, showIcons = false, showContrib = strings.link.artist(who, {to}), showContrib && what && `(${what})`, showIcons && urls.length && `(${urls.map(iconifyURL).join(', ')})` - ].join(' '); + ].filter(Boolean).join(' '); })); } -- cgit 1.3.0-6-gf8a5