diff --git a/.github/workflows/update-set-implementation-lists.yml b/.github/workflows/update-set-implementation-lists.yml index 6a36ed4cc00..dff5824fc4f 100644 --- a/.github/workflows/update-set-implementation-lists.yml +++ b/.github/workflows/update-set-implementation-lists.yml @@ -96,7 +96,7 @@ jobs: hasImplementedCards: implemented.length > 0, unimplementedCards: unimplemented, implementedCards: implemented, - unimplementedScryfallLink: `https://scryfall.com/search?q=!"${String.join('"OR!"', cleanCards)}"+e:${set[1]}` + unimplementedScryfallLink: `https://scryfall.com/search?q=!"${cleanCards.join('"OR!"')}"+e:${set[1]}` }); issuesToUpdate.push(foundIssue); } else { @@ -107,7 +107,7 @@ jobs: hasImplementedCards: implemented.length > 0, unimplementedCards: unimplemented, implementedCards: implemented, - unimplementedScryfallLink: `https://scryfall.com/search?q=!"${String.join('"OR!"', cleanCards)}"+e:${set[1]}` + unimplementedScryfallLink: `https://scryfall.com/search?q=!"${cleanCards.join('"OR!"')}"+e:${set[1]}` }) }); }