Skip to content

Commit

Permalink
Merge branch 'master' into fix/02-2024
Browse files Browse the repository at this point in the history
  • Loading branch information
sonnyt committed Mar 6, 2024
2 parents a2ad252 + 55ffb4f commit 0028f7b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion assets/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Ugly Email",
"short_name": "Ugly Email",
"version": "4.0.1",
"version": "4.1.1",
"description": "Get Back Your Email Privacy, Block Email Tracking.",
"author": "OneClick Lab",
"homepage_url": "http://uglyemail.com",
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ugly-email-extension",
"version": "4.0.1",
"version": "4.1.1",
"description": "",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/services/trackers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export class Trackers {
}

match(body: string): string | null {
const pixel = this.identifiers.find((p) => new RegExp(p, 'g').test(body));
const pixel = this.identifiers.find((p) => new RegExp(p, 'gi').test(body));
return pixel ? this.pixels.get(pixel) : null;
}
}
Expand Down

0 comments on commit 0028f7b

Please sign in to comment.