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 end
function updater:check(branch) function updater:check(branch)
local curr = os.time(); 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; return false;
end end
end
self.last_check = curr; self.last_check = curr;
local req, rerr = http.get(self.api_url .. "/commits?sha="..branch); local req, rerr = http.get(self.api_url .. "/commits?sha="..branch);
if not req then if not req then

View File

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