From 36bc67a29f091330b4892286aec78a523bc941e3 Mon Sep 17 00:00:00 2001 From: lowlighter <22963968+lowlighter@users.noreply.github.com> Date: Sat, 15 Jan 2022 18:32:16 -0500 Subject: [PATCH] fix(plugins/starlists): bad parenthesis [skip ci] --- source/plugins/starlists/index.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/plugins/starlists/index.mjs b/source/plugins/starlists/index.mjs index f33da2d8..2d5b1971 100644 --- a/source/plugins/starlists/index.mjs +++ b/source/plugins/starlists/index.mjs @@ -29,8 +29,8 @@ export default async function({login, q, imports, data, account}, {enabled = fal console.debug(`metrics/compute/${login}/plugins > starlists > found [${lists.map(({name}) => name)}]`) lists = lists .filter(({name}) => name) - .filter(({name}) => (!only.length)||(only.includes(name.toLocaleLowerCase())) - .filter(({name}) => !ignored.includes(name.toLocaleLowerCase()))) + .filter(({name}) => (!only.length)||(only.includes(name.toLocaleLowerCase()))) + .filter(({name}) => !ignored.includes(name.toLocaleLowerCase())) .slice(0, limit) console.debug(`metrics/compute/${login}/plugins > starlists > extracted ${lists.length} lists`)