浏览代码

Adjusted tz offset

Spencer Gardner 2 年之前
父节点
当前提交
1fb75e9252
共有 1 个文件被更改,包括 1 次插入1 次删除
  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:-21600`
+     `tz:-21627`
   ]
   res.send(lines.join('\n'));
 });