Skip to content

Commit

Permalink
feat: 이미지 저장하도록 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
redcarrot1 committed Jan 28, 2024
1 parent 62738fd commit df6a8a4
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ public static String toJsonFormat(List<InferenceTranslate> inferenceTranslates)
sb.append("\", \"englishTTSString\": \"");
sb.append(inferenceTranslates.get(i).toEnglish());
sb.append("\", \"needAlert\": \"");
sb.append(inferenceTranslates.get(i).isAlert());
//sb.append(inferenceTranslates.get(i).isAlert());
sb.append("true");

if (i != inferenceTranslates.size() - 1) {
sb.append("\"},");
Expand Down

0 comments on commit df6a8a4

Please sign in to comment.