박찬수

팀 정보 오류 수정

Showing 1 changed file with 2 additions and 2 deletions
...@@ -122,7 +122,7 @@ function SelectAPI(eventObj, commingMsg){ ...@@ -122,7 +122,7 @@ function SelectAPI(eventObj, commingMsg){
122 SelectLeagueInfo(eventObj, tryParse.int(commingMsg)); 122 SelectLeagueInfo(eventObj, tryParse.int(commingMsg));
123 } 123 }
124 else if(step == 2 && !isLeagueInfo){ 124 else if(step == 2 && !isLeagueInfo){
125 - SelectTeamInfo(tryParse.int(commingMsg)); 125 + SelectTeamInfo(eventObj, tryParse.int(commingMsg));
126 } 126 }
127 } 127 }
128 else{ // 팀명 입력 128 else{ // 팀명 입력
...@@ -219,7 +219,7 @@ function SelectLeagueInfo(eventObj, inputNum){ ...@@ -219,7 +219,7 @@ function SelectLeagueInfo(eventObj, inputNum){
219 return returnMsg; 219 return returnMsg;
220 } 220 }
221 221
222 -function SelectTeamInfo(inputNum){ 222 +function SelectTeamInfo(eventObj, inputNum){
223 let returnMsg = "잘 못 고르셨습니다. 다시 골라주세요." 223 let returnMsg = "잘 못 고르셨습니다. 다시 골라주세요."
224 switch(inputNum){ 224 switch(inputNum){
225 case 1: // 경기 일정 225 case 1: // 경기 일정
......