diff options
-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'); |