fix: 自动点赞忽略黑名单的问题

This commit is contained in:
CrazyboyQCD 2025-05-03 20:30:25 +08:00
parent 20b9a0c3f9
commit 5d49d33c14

View File

@ -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