refactor(printers): addedin daily check for printers used to only be on a restart

This commit is contained in:
2025-07-15 06:27:33 -05:00
parent 8afa4176ef
commit 588f264854

View File

@@ -97,4 +97,8 @@ deleteLabels();
setInterval(() => {
deleteLabels();
}, 60 * 60 * 24 * 1000);
setInterval(() => {
updatePrinters();
}, 1000 * 60 * 60 * 24);
export default app;