diff options
author | Alessio Vanni <vannilla@firemail.cc> | 2019-05-17 21:11:24 +0200 |
---|---|---|
committer | Alessio Vanni <vannilla@firemail.cc> | 2019-05-17 21:11:24 +0200 |
commit | be7e1916730f30de9e3ebb6a687e8ee419a484df (patch) | |
tree | 1cbbc254e2f52c99254748fd3e93ecf05012e241 | |
parent | fde732b8776637cd00cc6922ddac2809af419559 (diff) | |
download | ematrix-be7e1916730f30de9e3ebb6a687e8ee419a484df.tar.lz ematrix-be7e1916730f30de9e3ebb6a687e8ee419a484df.tar.xz ematrix-be7e1916730f30de9e3ebb6a687e8ee419a484df.zip |
Another fix
-rw-r--r-- | install.rdf | 2 | ||||
-rw-r--r-- | js/vapi-background.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/install.rdf b/install.rdf index e01b858..0ff2c53 100644 --- a/install.rdf +++ b/install.rdf @@ -23,7 +23,7 @@ <r:RDF xmlns:r="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.mozilla.org/2004/em-rdf#"> <r:Description about="urn:mozilla:install-manifest"> <id>eMatrix@vannilla.org</id> - <version>2.0.2</version> + <version>2.0.3</version> <name>ηMatrix</name> <description>Point & click to forbid/allow any class of requests made by your browser. Use it to block scripts, iframes, ads, facebook, etc.</description> <!-- uMatrix homepageURL --> diff --git a/js/vapi-background.js b/js/vapi-background.js index d462bc0..957a3b8 100644 --- a/js/vapi-background.js +++ b/js/vapi-background.js @@ -360,7 +360,7 @@ vAPI.storage = (function() { path2.append('extension-data'); path2.append(location.host + '.sqlite'); if (path2.exists()) { - path2.copyTo(path, location.host+'.sqlite'); + path2.moveTo(path, location.host+'.sqlite'); } path.append(location.host + '.sqlite'); |