do not immediately start checking hashes

This commit is contained in:
FinnHornhoover 2023-10-21 22:52:51 +03:00
parent c05e9c0dcd
commit c78a3e5ada
2 changed files with 3 additions and 0 deletions

View File

@ -415,7 +415,9 @@ function loadCacheList() {
$("#cache-tablebody").append(row); $("#cache-tablebody").append(row);
}); });
}
function startHashCheck() {
setTimeout(function () { setTimeout(function () {
handleCache("hash-check"); handleCache("hash-check");
}, 0); }, 0);

View File

@ -117,6 +117,7 @@
type="button" type="button"
title="Edit Cache Storage" title="Edit Cache Storage"
data-target="#of-editcacheconfigmodal" data-target="#of-editcacheconfigmodal"
onclick="startHashCheck()"
> >
<i class="fas fa-cog"></i> <i class="fas fa-cog"></i>
</button> </button>