엄성진

Fix Syntax Error

Showing 1 changed file with 7 additions and 5 deletions
...@@ -21,7 +21,9 @@ app.post('/hook', function (req, res) { ...@@ -21,7 +21,9 @@ app.post('/hook', function (req, res) {
21 console.log('======================', new Date(), '======================'); 21 console.log('======================', new Date(), '======================');
22 22
23 if (eventObj.type=="message") // 일반 메시지일때 23 if (eventObj.type=="message") // 일반 메시지일때
24 + {
24 react(eventObj.replyToken, message.text,eventObj.source.userId); 25 react(eventObj.replyToken, message.text,eventObj.source.userId);
26 + }
25 27
26 else 28 else
27 switch (eventObj.postback.data) { 29 switch (eventObj.postback.data) {
...@@ -99,11 +101,11 @@ app.post('/hook', function (req, res) { ...@@ -99,11 +101,11 @@ app.post('/hook', function (req, res) {
99 break; 101 break;
100 102
101 103
102 - //else if (출력 개수 설정 버튼을 누르고 거기서 응답이 들어왔을때) 104 + //case (출력 개수 설정 버튼을 누르고 거기서 응답이 들어왔을때)
103 - 105 + }
104 - 106 + res.sendStatus(200);
105 -}; 107 + }
106 - 108 +);
107 function react(replyToken, message,userId) { 109 function react(replyToken, message,userId) {
108 110
109 request.post( 111 request.post(
......