fix: 베팅 시 key 정렬을 숫자 정렬로

This commit is contained in:
2022-02-05 07:43:27 +00:00
committed by Gitea
parent cd1ccfadaf
commit d2f6c34e85
2 changed files with 6 additions and 5 deletions
+1 -1
View File
@@ -87,7 +87,7 @@ class Bet extends \sammo\BaseAPI
return '필요한 선택 수를 채우지 못했습니다.';
}
sort($bettingType, SORT_NUMERIC);
$bettingType = array_unique($bettingType, SORT_NUMERIC);//NOTE: key로 바로 사용하므로 중요함
if(count($bettingType) != $bettingInfo->selectCnt){
return '중복된 값이 있습니다.';