mirror of
https://github.com/pi-hole/web.git
synced 2026-08-23 06:39:09 +01:00
The startup timer setup used `Math.trunc(enaT.text())` while `countDown()` uses `Math.trunc(Number(enaT.text()))`. Both work (the stored value is a clean millisecond timestamp), but wrap the value in `Number()` here too so the two call sites read the `#enableTimer` text identically. Signed-off-by: DL6ER <dl6er@dl6er.de>