mirror of
https://github.com/ReVanced/revanced-patches.git
synced 2025-05-10 20:55:38 +02:00
fix(Twitter - Hide recommended users): Make hiding work again by filtering for new entryId prefix (#4456)
This commit is contained in:
parent
8e16483229
commit
ff846b0b7e
1 changed files with 1 additions and 1 deletions
|
@ -163,7 +163,7 @@ internal object TwiFucker {
|
|||
|
||||
private fun JSONObject.entryIsWhoToFollow(): Boolean =
|
||||
optString("entryId").let {
|
||||
it.startsWith("whoToFollow-") || it.startsWith("who-to-follow-") || it.startsWith("connect-module-")
|
||||
it.startsWith("whoToFollow-") || it.startsWith("who-to-follow-") || it.startsWith("connect-module-") || it.startsWith("who-to-subscribe-")
|
||||
}
|
||||
|
||||
private fun JSONObject.itemContainsPromotedUser(): Boolean =
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue