diff options
author | Alessio Vanni <vannilla@firemail.cc> | 2019-05-13 17:51:20 +0200 |
---|---|---|
committer | Alessio Vanni <vannilla@firemail.cc> | 2019-05-13 17:51:20 +0200 |
commit | 51b787e31052f8920692cc1a47df5e890c52c491 (patch) | |
tree | 81c685ccfa817426768bd8fcddeff06a8e42f647 /js | |
parent | 08e1b5aef425090e4dc91978968a97bc5b38e53d (diff) | |
download | ematrix-51b787e31052f8920692cc1a47df5e890c52c491.tar.lz ematrix-51b787e31052f8920692cc1a47df5e890c52c491.tar.xz ematrix-51b787e31052f8920692cc1a47df5e890c52c491.zip |
Remove migration function
Presumably, no one is using the old format anymore (especially since
eMatrix is a different extension than uMatrix/uBlock...)
Diffstat (limited to 'js')
-rw-r--r-- | js/assets.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/js/assets.js b/js/assets.js index 7190ca0..5219a82 100644 --- a/js/assets.js +++ b/js/assets.js @@ -388,7 +388,7 @@ api.unregisterAssetSource = function(assetKey) { **/ -var assetCacheRegistryStatus, +var assetCacheRegistryStatus = undefined, assetCacheRegistryStartTime = Date.now(), assetCacheRegistry = {}; @@ -426,7 +426,9 @@ var getAssetCacheRegistry = function(callback) { }); }; - migrate(migrationDone); + // Probably not needed anymore + // Commented out until something breaks + // migrate(migrationDone); }; var saveAssetCacheRegistry = (function() { |