Save on storage change and deferred save, part 2

Insert calls to deferSaveOnDisk
This commit is contained in:
tartpvule 2019-09-12 16:44:14 +00:00
parent 6cdcfd099f
commit 891723b7b9

View File

@ -199,7 +199,7 @@ function loadOldDataFromStore()
} }
/** /**
* Save the hash status to the local storage. * Save the hash status to the local storage (RAM).
* The status can have the following values: * The status can have the following values:
* 1 "up to date" * 1 "up to date"
* 2 "updated" * 2 "updated"
@ -231,6 +231,7 @@ function increaseGlobalURLCounter(number)
if(storage.statisticsStatus) if(storage.statisticsStatus)
{ {
storage.globalurlcounter += number; storage.globalurlcounter += number;
deferSaveOnDisk('globalurlcounter');
} }
} }
@ -242,6 +243,7 @@ function increaseURLCounter()
if(storage.statisticsStatus) if(storage.statisticsStatus)
{ {
storage.globalCounter++; storage.globalCounter++;
deferSaveOnDisk('globalCounter');
} }
} }