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.
맞춤법 검사 서버가 텍스트 길이가 9천자 좀 넘을 때 500 에러를 리턴합니다. 이를 해결하기 위해, 검사 대상 텍스트를 최대 8천자 이내에서 문장 boundary를 고려하여 split하고, 순차적으로 서버에 검사 요청하도록 수정했습니다.
아울러 검사 결과의 error offset 값이 text내 offset과 맞지 않는 문제를 수정했습니다. 윈도우스의 경우 텍스트 줄바꿈이 \r\n인데, 맞춤법 서버는 내부적으로 모두 \r로 바꾼 후 맞춤법 검사를 수행하고, 바뀐 텍스트 기준으로 error offset을 돌려줍니다. 여기서 발생하는 오차를 해결하기 위해 전송 전에 \n를 ' ' (space)로 치환합니다. 이로써 error descriptor를 적용하는 방식을 더 간단하게 수정할 수 있었습니다.