From 4bb6f173d72694448ab848f7d22881da3151a0fb Mon Sep 17 00:00:00 2001 From: Paul Kim Date: Wed, 4 Oct 2023 15:57:45 +0900 Subject: [PATCH] =?UTF-8?q?issue=20#10=20=EB=82=A0=EC=94=A8=20=EB=B0=8F=20?= =?UTF-8?q?=ED=95=AD=EA=B3=B5=20=EC=A0=95=EB=B3=B4=20=EC=97=85=EB=8D=B0?= =?UTF-8?q?=EC=9D=B4=ED=8A=B8=20=EC=A3=BC=EA=B8=B0=20=EB=A6=B4=EB=A6=AC?= =?UTF-8?q?=EC=A6=88=EB=A1=9C=20=EC=88=98=EC=A0=95.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- procentric/application/lib/hoteltv.service.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/procentric/application/lib/hoteltv.service.js b/procentric/application/lib/hoteltv.service.js index 9b0b026..02da7ff 100755 --- a/procentric/application/lib/hoteltv.service.js +++ b/procentric/application/lib/hoteltv.service.js @@ -209,8 +209,7 @@ async function sworker_service(args) { let _tm_diff_s = Math.floor(_tm_diff_ms / 1000); //WEATHER정보는 매 2시간 마다 한번씩 업데이트 - //if (_tm_diff_s > 7200) { - if (_tm_diff_s > 60) { + if (_tm_diff_s > 7200) { g_tm_prev.weather = _tm_cur; _bNeed_Update.weather = true; } @@ -222,8 +221,7 @@ async function sworker_service(args) { let _tm_diff_s = Math.floor(_tm_diff_ms / 1000); //WEATHER정보는 매 1시간 마다 한번씩 업데이트 - //if (_tm_diff_s > 3600) { - if (_tm_diff_s > 60) { + if (_tm_diff_s > 3600) { g_tm_prev.widget = _tm_cur; _bNeed_Update.widget = true; }