Skip to content

Commit

Permalink
chore(chrome): fix adblock compile
Browse files Browse the repository at this point in the history
  • Loading branch information
j-mendez committed Dec 14, 2024
1 parent 36c15d1 commit f0d6301
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 14 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion spider/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spider"
version = "2.21.23"
version = "2.21.24"
authors = [
"j-mendez <[email protected]>"
]
Expand Down
2 changes: 1 addition & 1 deletion spider_chrome/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spider_chrome"
version = "2.21.23"
version = "2.21.24"
rust-version = "1.70"
authors = [
"j-mendez <[email protected]>"
Expand Down
4 changes: 2 additions & 2 deletions spider_chrome/src/handler/network.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ lazy_static! {
"index",
"bundle",
"vendor",
"/wp-content/js/", // Covers word press content
"/wp-content/js/", // Covers Wordpress content
// Verified 3rd parties for request
"https://m.stripe.network/",
"https://challenges.cloudflare.com/",
Expand Down Expand Up @@ -512,7 +512,7 @@ impl NetworkManager {
&& ResourceType::Stylesheet == event.resource_type
|| self.block_javascript
&& javascript_resource
&& !ALLOWED_MATCHER.contains(current_url)
&& !ALLOWED_MATCHER.is_match(current_url)
} else {
skip_networking
};
Expand Down
2 changes: 1 addition & 1 deletion spider_cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spider_cli"
version = "2.21.23"
version = "2.21.24"
authors = [
"j-mendez <[email protected]>"
]
Expand Down
2 changes: 1 addition & 1 deletion spider_transformations/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spider_transformations"
version = "2.21.23"
version = "2.21.24"
authors = [
"j-mendez <[email protected]>"
]
Expand Down
2 changes: 1 addition & 1 deletion spider_utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spider_utils"
version = "2.21.23"
version = "2.21.24"
authors = [
"j-mendez <[email protected]>"
]
Expand Down
2 changes: 1 addition & 1 deletion spider_worker/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spider_worker"
version = "2.21.23"
version = "2.21.24"
authors = [
"j-mendez <[email protected]>"
]
Expand Down

0 comments on commit f0d6301

Please sign in to comment.