Skip to content
This repository has been archived by the owner on Oct 11, 2020. It is now read-only.

Commit

Permalink
Merge pull request #102 from lychichem/master
Browse files Browse the repository at this point in the history
Fix issues reported by me since 1.14.22 & update to 1.14.24 thanks to gorhill
  • Loading branch information
nicole-ashley authored Jan 29, 2018
2 parents 77488e5 + 2f52860 commit 1a9a74f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions platform/edge/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
<li><a href="http://fontawesome.io" target="_blank">Font Awesome</a> by <a href="https://github.com/davegandy">Dave Gandy</a>
</ul>

<script src="js/vapi.js"></script>
<script src="js/vapi-common.js"></script>
<script src="js/vapi-client.js"></script>
<script src="js/udom.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion platform/edge/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,

"name": "uBlock Origin",
"version": "1.14.22",
"version": "1.14.24",

"commands": {
"launch-element-zapper": {
Expand Down
2 changes: 1 addition & 1 deletion src/js/static-net-filtering.js
Original file line number Diff line number Diff line change
Expand Up @@ -954,7 +954,7 @@ FilterOriginMixedSet.prototype = Object.create(FilterOrigin.prototype, {
i = hostnames.length,
hostname;
while ( i-- ) {
hostname = hostnames[i].replace(/\./g, '\\.');
hostname = hostnames[i];
if ( hostname.charCodeAt(0) === 0x7E /* '~' */ ) {
noneOf.push(hostname.slice(1));
} else {
Expand Down

0 comments on commit 1a9a74f

Please sign in to comment.