-
Notifications
You must be signed in to change notification settings - Fork 0
[Feature] 사용자 위치별 미세먼지 조회 기능 구현 #252
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
base: develop
Are you sure you want to change the base?
The head ref may contain hidden characters: "feature/#235-\uC0AC\uC6A9\uC790-\uC704\uCE58\uBCC4-\uBBF8\uC138\uBA3C\uC9C0"
Conversation
Test Results 81 files 81 suites 4m 52s ⏱️ Results for commit 4f5b6fb. ♻️ This comment has been updated with latest results. |
ObservatoryResponse observatoryResponse = getObservatory(lat, lng);
if (isSeoul(observatoryResponse)) {
return getCachedAirQuality("seoul").orElseGet(this::updateAriQuality);
} Provider에서 보면 getObservatory 가 null 값도 반환할 수 있던데 그럴 가능성은 없나요? 만약 null 이 넘어오게 된다면 |
헉 그러네요! 말씀해주신 부분 확인하고 Optional로 처리한 후 널포인터 발생하지 않도록 수정했습니다. |
|
#️⃣ 연관된 이슈
✅ 체크리스트
📝 작업 내용
사용자 위치 좌표 기준으로 제일 가까운 관측소 조회
📸 스크린샷 (UI 변경 시 필수)
👀 리뷰어 가이드라인
현재 Service에 많은 역할이 할당 되어 있어 추후 리팩터링을 거칠 예정입니다.