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

Oops; timer wasn't being set

This commit is contained in:
Chris 2015-02-10 13:25:10 -07:00
parent f937d2ee59
commit 029a673a58

View File

@ -332,7 +332,7 @@ var updateMetadataNow = function() {
var updateMetadataAsync = function() {
if ( metadataPersistTimer === null ) {
setTimeout(updateMetadata, 60 * 1000);
metadataPersistTimer = setTimeout(updateMetadata, 60 * 1000);
}
};