Skip to content

Commit

Permalink
feat: 점자블록은 결과에서 무시하도록 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
redcarrot1 committed Feb 7, 2024
1 parent 928259c commit ae83031
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,9 @@ else if (!left.isEmpty() && !center.isEmpty() && !right.isEmpty()) {
*/

if (!left.isEmpty() || !center.isEmpty() || !right.isEmpty()) {
return "[{\"koreanTTSString\":" +
return "[{\"koreanTTSString\":\"" +
left.append(center).append(right) +
", \"needAlert\": \"" + isAlert + "\"}]";
"\", \"needAlert\": \"" + isAlert + "\"}]";
}
else {
return "[]";
Expand Down

0 comments on commit ae83031

Please sign in to comment.