You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using multiple rule sets, it is difficult to know which rules are currently in effect when adjusting them. Consider supporting a filter log similar to AdGuard or uBlock Origin, as shown below:
Yes, it is planned, but will require some significant changes. The way we have right now in BlockResult is not ideal; storing a copy of the rule string wastes a lot of runtime memory. That's why we currently don't enable it by default.
This should ultimately be implemented by storing a line number so that the original rule can be retrieved from the filter list as needed (i.e. only when a logger is opened).
When using multiple rule sets, it is difficult to know which rules are currently in effect when adjusting them. Consider supporting a filter log similar to
AdGuard
oruBlock Origin
, as shown below:I found
adblock-rust
contains the information.Can we provide a mechanism to extend BlockResult or have a completely new API implementation to support it?
The text was updated successfully, but these errors were encountered: