Skip to content
New issue

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

[BUG] Recently Result UI 관련 이슈 공유 #69

Open
KanuKim97 opened this issue Apr 29, 2024 · 2 comments · Fixed by #71
Open

[BUG] Recently Result UI 관련 이슈 공유 #69

KanuKim97 opened this issue Apr 29, 2024 · 2 comments · Fixed by #71
Assignees
Labels
bug Something isn't working

Comments

@KanuKim97
Copy link
Collaborator

Description

현재 Recently Result와 관련한 이슈 사항이 있어 함께 공유드립니다.
24.04.06일 이루어진 브라이튼과 아스날의 경기 결과를 출력하는 도중 다음과 같이 표기 됨을 확인하였습니다.

ScreenShot

스크린샷 2024-04-29 20 54 10

실제 결과는 다음과 같습니다.

Actual Result

스크린샷 2024-04-29 20 55 35

실제 경기 결과 기록은 Bukayo Saka 선수가 33분 경 PK를 통한 골이 기록되었음에도 반영되지 않음을 확인했습니다.
해당 이슈는 fix브랜치를 통해 수정 예정입니다.

@KanuKim97 KanuKim97 added the bug Something isn't working label Apr 29, 2024
@KanuKim97 KanuKim97 self-assigned this Apr 29, 2024
@eshc123
Copy link
Owner

eshc123 commented Apr 29, 2024

데이터 수집 및 저장 과정에서 PK 골 기록이 포함되어 있지 않은 것을 확인하여 DB에 PK 관련 기록 추가하였습니다.

예시로 MatchCard.ktRecentlyGoalHistory 에서 아래와 같이 수정한다면

val goalHistory = matchHistory.let { detail ->
        detail
            .filter { history -> history.type == "GOAL" || history.type == "PENALTY" }
            .filter { history -> history.teamId == teamId }
    }
스크린샷 2024-04-30 오전 12 33 26

위와 같이 확인 가능하며 type 이 "PENALTY"인 경우 PK골로 생각하시면 될 것 같습니다.

PK 골인 경우에는 (p) 나 (pk) 등과 같이 PK 골이라는 표시를 하는 것도 좋을 것 같습니다!

@KanuKim97
Copy link
Collaborator Author

데이터 수집 및 저장 과정에서 PK 골 기록이 포함되어 있지 않은 것을 확인하여 DB에 PK 관련 기록 추가하였습니다.

예시로 MatchCard.ktRecentlyGoalHistory 에서 아래와 같이 수정한다면

val goalHistory = matchHistory.let { detail ->
        detail
            .filter { history -> history.type == "GOAL" || history.type == "PENALTY" }
            .filter { history -> history.teamId == teamId }
    }
스크린샷 2024-04-30 오전 12 33 26 위와 같이 확인 가능하며 type 이 "PENALTY"인 경우 PK골로 생각하시면 될 것 같습니다.

PK 골인 경우에는 (p) 나 (pk) 등과 같이 PK 골이라는 표시를 하는 것도 좋을 것 같습니다!

확인했습니다! 수정후 PR 드리겠습니다!\

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants