fix: hotfix 동기화 — history/detail candidate_count 안전 처리 #225

병합
htlee hotfix/sync-candidate-count 에서 develop 로 69 commits 를 머지했습니다 2026-04-04 11:05:43 +09:00
Showing only changes of commit 962f2df683 - Show all commits

파일 보기

@ -265,6 +265,6 @@ public class OsintCollector {
}
private String encodeQuery(String query) {
return query.replace(" ", "+");
return java.net.URLEncoder.encode(query, StandardCharsets.UTF_8);
}
}