-
Notifications
You must be signed in to change notification settings - Fork 802
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8fd12b0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some people are reporting some sort of Twitter breakage on Reddit, so I found this Twitter-related commit and I wonder if this could be the cause: https://www.reddit.com/r/uBlockOrigin/comments/gflpku/did_something_just_change_that_makes_ubo_screw/.
8fd12b0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok, re-enabled the xpath filter
8fd12b0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
370565f
8fd12b0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A filter such as
##span:has-text(...)
is too broad, the first part,##span
returns over 270 elements on my side. We need to reduce as much as possible the number of elements before chaining to a procedural operator. We need to use whatever stable DOM info can be used to narrow as much as possible. For example,##[data-testid="trend"] span
returns 29 elements.