This commit is contained in:
Gvidas Juknevičius 2024-08-25 23:05:38 +03:00
parent cfc3374897
commit 7e5b7503d2
Signed by: MCorange
GPG Key ID: 12B1346D720B7FBB
2 changed files with 8 additions and 5 deletions

View File

@ -377,9 +377,11 @@ rawset(__BUNDLER_FILES, "updater", function ()
end
function updater:check(branch)
local curr = os.time();
if not ((math.abs(curr - self.last_check) >= self.threshold) and (self.curr_commit_hash ~= "")) then
if math.abs(curr - self.last_check) < self.threshold then
if self.curr_commit_hash ~= "" then
return false;
end
end
self.last_check = curr;
local req, rerr = http.get(self.api_url .. "/commits?sha="..branch);
if not req then

View File

@ -56,10 +56,11 @@ end
function updater:check(branch)
local curr = os.time();
if not ((math.abs(curr - self.last_check) >= self.threshold) and (self.curr_commit_hash ~= "")) then
-- log.debug("Not time for an update yet");
if math.abs(curr - self.last_check) < self.threshold then
if self.curr_commit_hash ~= "" then
return false;
end
end
self.last_check = curr;
local req, rerr = http.get(self.api_url .. "/commits?sha="..branch);