1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-15 07:22:28 +02:00

#602: no need to rename compiled lists, they will be invalidated anyways

This commit is contained in:
gorhill 2015-08-18 14:49:46 -04:00
parent efccaf1416
commit ff33410c4a

View File

@ -959,14 +959,13 @@
continue;
}
newListKey = µb.oldListToNewListMap[oldListKey];
// Remove cached and compiled list
if ( newListKey === '' ) {
continue;
}
// Rename cached and compiled list (important: compiled list first)
µb.assets.rename(µb.getCompiledFilterListPath(oldListKey),
µb.getCompiledFilterListPath(newListKey));
// Rename cached asset to preserve content -- so it does not
// need to be fetched from remote server.
µb.assets.rename(oldListKey, newListKey);
µb.assets.purge(µb.getCompiledFilterListPath(oldListKey));
}
µb.patchFilterLists(stockLists);