This commit is contained in:
Christopher Cookman 2025-08-21 06:13:04 -06:00
parent 8950950789
commit 925fbe76a5

View file

@ -8,6 +8,9 @@ app.get('/', (req, res) => {
});
app.get('/time.php', (req, res) => {
// Logging
console.log(`time.php called; Headers: ${JSON.stringify(req.headers)}`);
const tz = req.query.zone || 'UTC';
const date = new Date();
try {