This commit is contained in:
Gvidas Juknevičius 2024-08-25 23:16:54 +03:00
parent d99a1ee5bb
commit efc78c87b7
Signed by: MCorange
GPG Key ID: 12B1346D720B7FBB
2 changed files with 2 additions and 2 deletions

View File

@ -425,7 +425,7 @@ rawset(__BUNDLER_FILES, "updater", function ()
fd.write(body); fd.write(body);
fd.close(); fd.close();
local notif = "Computer #" .. tostring( os.getComputerID() ) .. " updating"; local notif = "Computer #" .. tostring( os.getComputerID() ) .. " updating";
notifier.notify("default", notif); notifier.notify("urgent", notif);
log.debug("New update written to disk (" .. path .. ")"); log.debug("New update written to disk (" .. path .. ")");
end end
return updater; return updater;

View File

@ -114,7 +114,7 @@ function updater:update(path, url)
fd.close(); fd.close();
local notif = "Computer #" .. tostring( os.getComputerID() ) .. " updating"; local notif = "Computer #" .. tostring( os.getComputerID() ) .. " updating";
notifier.notify("default", notif); notifier.notify("urgent", notif);
log.debug("New update written to disk (" .. path .. ")"); log.debug("New update written to disk (" .. path .. ")");
end end