Merged
Conversation
|
dong3058
approved these changes
Jun 21, 2025
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.




기능 설명
작업 내용
ThumbnailUrlUtils 유틸 클래스를 생성하여, 크롤링된 뉴스 썸네일 이미지 URL을 원본 이미지 URL로 디코딩하는 로직을 모듈화하였습니다.
→ 중복되는 디코딩 로직을 공통 유틸로 분리하여 재사용성과 유지보수성을 높이기 위함입니다.
디코딩은 BASEBALL, FOOTBALL 카테고리에 한해 적용되며, 해당 카테고리의 썸네일 URL은 src 쿼리 파라미터에 원본 이미지 경로가 인코딩되어 있기 때문에 디코딩 후 추출이 필요합니다.
ESPORTS 등 기타 카테고리는 별도 디코딩 없이, URL 내의 불필요한 쿼리 파라미터만 제거하여 사용해도 무방한 구조이므로 단순 처리로 대응했습니다.
수정 사항
추가 작업 예정
테스트