From 5d49d33c14c2d59d37c4451be34ecc27b5abd1d0 Mon Sep 17 00:00:00 2001 From: CrazyboyQCD Date: Sat, 3 May 2025 20:30:25 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=87=AA=E5=8A=A8=E7=82=B9=E8=B5=9E?= =?UTF-8?q?=E5=BF=BD=E7=95=A5=E9=BB=91=E5=90=8D=E5=8D=95=E7=9A=84=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- registry/lib/components/utils/auto-like/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/registry/lib/components/utils/auto-like/index.ts b/registry/lib/components/utils/auto-like/index.ts index bdd255ca5..2adc36b07 100644 --- a/registry/lib/components/utils/auto-like/index.ts +++ b/registry/lib/components/utils/auto-like/index.ts @@ -64,7 +64,7 @@ export const component = defineComponentMetadata({ const blackList = getData(BlackListDataKey) forEachFeedsCard({ added: card => { - if (blackList.includes(card.username)) { + if (blackList[0].users.includes(card.username)) { return } const likeButtons = dq(card.element, '.bili-dyn-action.like') as HTMLElement