박찬수

초기화 기능 수정

Showing 1 changed file with 3 additions and 4 deletions
...@@ -79,15 +79,14 @@ function Reply(eventObj,replyMsg){ ...@@ -79,15 +79,14 @@ function Reply(eventObj,replyMsg){
79 { 79 {
80 "type":"text", 80 "type":"text",
81 "text":replyMsg 81 "text":replyMsg
82 - },
83 - {
84 - "type":"text",
85 - "text":"second"
86 } 82 }
87 ] 83 ]
88 } 84 }
89 },(error, response, body) => { 85 },(error, response, body) => {
90 console.log(body); 86 console.log(body);
87 + if(step == 2){
88 + SetDefault(eventObj.source.userId);
89 + }
91 }); 90 });
92 } 91 }
93 92
......