Browse Source

Adjusted tz offset

Spencer Gardner 2 years ago
parent
commit
8094ad7b71
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/app.ts

+ 1 - 1
src/app.ts

@@ -5,7 +5,7 @@ const app = express();
 app.get("/", (req, res) => {
   const lines = [
     `time:${Math.round(new Date().getTime() / 1000)}`,
-     `tz:-6`
+     `tz:-21600`
   ]
   res.send(lines.join('\n'));
 });