Skip to content

Commit 4cb3df9

Browse files
authored
Merge pull request #102 from CKylinMC:fix/foman
fix(unfollow): filter "fans" got reversed results
2 parents e1b2fb9 + 7362fdc commit 4cb3df9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/ckylin-bilibili-unfollow.user.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// ==UserScript==
22
// @name [Bilibili] 关注管理器
33
// @namespace ckylin-bilibili-foman
4-
// @version 0.2.23
4+
// @version 0.2.24
55
// @description 快速排序和筛选你的关注列表,一键取关不再关注的UP等
66
// @author CKylinMC
77
// @updateURL https://cdn.jsdelivr.net/gh/CKylinMC/UserJS/scripts/ckylin-bilibili-unfollow.user.js
@@ -2631,7 +2631,7 @@
26312631
if (user.official_verify.type != value) continue userloop;
26322632
break;
26332633
case "fans":
2634-
if (user.attribute == value) continue userloop;
2634+
if (user.attribute !== value) continue userloop;
26352635
break;
26362636
case "special":
26372637
if (user.special != value) continue userloop;

0 commit comments

Comments
 (0)