Parcourir la source

Adjusted tz offset

Spencer Gardner il y a 2 ans
Parent
commit
c9b5fc3774
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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:-21627`
+     `tz:-21600`
   ]
   res.send(lines.join('\n'));
 });