1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-06-01 18:10:17 +12:00

Firefox: move callback to last call

This commit is contained in:
Deathamns 2014-12-20 11:57:05 +01:00 committed by gorhill
parent c2af79c996
commit 0769160b34

View file

@ -217,8 +217,8 @@ vAPI.storage = {
);
},
clear: function(callback) {
SQLite.run('DELETE FROM settings', null, callback);
SQLite.run('VACUUM');
SQLite.run('DELETE FROM settings');
SQLite.run('VACUUM', null, callback);
},
getBytesInUse: function(keys, callback) {
if (typeof callback !== 'function') {