mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-09-26 22:49:14 +08:00
Merge pull request #5222 from CrazyboyQCD/preview-fixes
fix: 自动点赞忽略黑名单的问题
This commit is contained in:
commit
732364962e
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user