소스 검색

Adjusted tz offset

Spencer Gardner 2 년 전
부모
커밋
8094ad7b71
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:-6`
+     `tz:-21600`
   ]
   res.send(lines.join('\n'));
 });