Version 1.24.1

This commit is contained in:
Kevin R 2022-03-25 18:29:42 +01:00
parent 63b557cf8c
commit b67a656918
No known key found for this signature in database
GPG Key ID: A4AD5E0732960C98
3 changed files with 4 additions and 4 deletions

View File

@ -15,7 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Require Firefox >= 55
- Require Chrome >= 37
## [1.24.0] - 2022-03-25
## [1.24.1] - 2022-03-25
### Compatibility note
- Require Firefox >= 55

View File

@ -111,7 +111,7 @@ function removeFieldsFormURL(provider, pureUrl, quiet = false, request = null) {
let localChange = false;
for (const field of fields.keys()) {
if (new RegExp(rule, "gi").test(field)) {
if (new RegExp("^"+rule+"$", "gi").test(field)) {
fields.delete(field);
changes = true;
localChange = true;
@ -119,7 +119,7 @@ function removeFieldsFormURL(provider, pureUrl, quiet = false, request = null) {
}
for (const fragment of fragments.keys()) {
if (new RegExp(rule, "gi").test(fragment)) {
if (new RegExp("^"+rule+"$", "gi").test(fragment)) {
fragments.delete(fragment);
changes = true;
localChange = true;

View File

@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "ClearURLs",
"version": "1.24.0",
"version": "1.24.1",
"author": "Kevin Roebert",
"description": "__MSG_extension_description__",
"homepage_url": "https://docs.clearurls.xyz",