아이템 필터 직업 추가 및 반복 API 호출 버그 수정 - #358
Open
dongglehada wants to merge 2 commits into
Open
Conversation
시그너스 나이츠 5개 직업 추가 소울마스터(1100) / 플레임위자드(1200) / 윈드브레이커(1300) / 나이트워커(1400) / 스트라이커(1500)
pinocchio22
approved these changes
Aug 25, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
📌 이슈
✅ 작업 사항
🐛 버그 원인
scrollViewDidScroll에서 페이지네이션 조건offsetY > contentHeight - height - 100이, 검색 결과가 적어 콘텐츠가 화면을 채우지 못할 경우contentHeight - height - 100이 음수가 되어 항상true로 평가됨.이로 인해 0.5초마다 API 호출이 반복되는 무한 루프 발생.
listItems.count < totalCounts가드를 추가하여 더 이상 불러올 데이터가 없으면 페이지네이션 자체를 차단하도록 수정.