Skip to content

Commit

Permalink
Fix curly braces
Browse files Browse the repository at this point in the history
  • Loading branch information
rpurdel authored and damencho committed Sep 13, 2023
1 parent ff65c5e commit 033be0d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/main/java/org/jitsi/jigasi/TranscriptionGateway.java
Original file line number Diff line number Diff line change
Expand Up @@ -127,12 +127,14 @@ private String getCustomTranscriptionServiceClass(String tenant)
responseBody.append(inputLine);
}
inputStream.close();
if (logger.isDebugEnabled()) {
if (logger.isDebugEnabled())
{
logger.debug("Received body " + responseBody);
}
JSONObject obj = new JSONObject(responseBody.toString());
transcriberClass = obj.getString("transcriber");
if (logger.isDebugEnabled()) {
if (logger.isDebugEnabled())
{
logger.debug("Using " + transcriberClass + " as the transcriber class.");
}
}
Expand Down

0 comments on commit 033be0d

Please sign in to comment.