We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
현재 Recently Result와 관련한 이슈 사항이 있어 함께 공유드립니다. 24.04.06일 이루어진 브라이튼과 아스날의 경기 결과를 출력하는 도중 다음과 같이 표기 됨을 확인하였습니다.
실제 결과는 다음과 같습니다.
실제 경기 결과 기록은 Bukayo Saka 선수가 33분 경 PK를 통한 골이 기록되었음에도 반영되지 않음을 확인했습니다. 해당 이슈는 fix브랜치를 통해 수정 예정입니다.
fix
The text was updated successfully, but these errors were encountered:
데이터 수집 및 저장 과정에서 PK 골 기록이 포함되어 있지 않은 것을 확인하여 DB에 PK 관련 기록 추가하였습니다.
예시로 MatchCard.kt의 RecentlyGoalHistory 에서 아래와 같이 수정한다면
MatchCard.kt
RecentlyGoalHistory
val goalHistory = matchHistory.let { detail -> detail .filter { history -> history.type == "GOAL" || history.type == "PENALTY" } .filter { history -> history.teamId == teamId } }
위와 같이 확인 가능하며 type 이 "PENALTY"인 경우 PK골로 생각하시면 될 것 같습니다.
PK 골인 경우에는 (p) 나 (pk) 등과 같이 PK 골이라는 표시를 하는 것도 좋을 것 같습니다!
Sorry, something went wrong.
데이터 수집 및 저장 과정에서 PK 골 기록이 포함되어 있지 않은 것을 확인하여 DB에 PK 관련 기록 추가하였습니다. 예시로 MatchCard.kt의 RecentlyGoalHistory 에서 아래와 같이 수정한다면 val goalHistory = matchHistory.let { detail -> detail .filter { history -> history.type == "GOAL" || history.type == "PENALTY" } .filter { history -> history.teamId == teamId } } 위와 같이 확인 가능하며 type 이 "PENALTY"인 경우 PK골로 생각하시면 될 것 같습니다. PK 골인 경우에는 (p) 나 (pk) 등과 같이 PK 골이라는 표시를 하는 것도 좋을 것 같습니다!
확인했습니다! 수정후 PR 드리겠습니다!\
KanuKim97
Successfully merging a pull request may close this issue.
Description
현재 Recently Result와 관련한 이슈 사항이 있어 함께 공유드립니다.
24.04.06일 이루어진 브라이튼과 아스날의 경기 결과를 출력하는 도중 다음과 같이 표기 됨을 확인하였습니다.
ScreenShot
실제 결과는 다음과 같습니다.
Actual Result
실제 경기 결과 기록은 Bukayo Saka 선수가 33분 경 PK를 통한 골이 기록되었음에도 반영되지 않음을 확인했습니다.
해당 이슈는
fix
브랜치를 통해 수정 예정입니다.The text was updated successfully, but these errors were encountered: