Skip to content

Commit

Permalink
'#2031: (Fix) Add missing line break to media messages with no caption.
Browse files Browse the repository at this point in the history
  • Loading branch information
wladimirleite committed Dec 28, 2023
1 parent ec511cb commit 6dad590
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -640,6 +640,8 @@ private synchronized void printMessage(PrintWriter out, Message message, boolean

if (message.getMediaCaption() != null)
out.println("<br>" + format(message.getMediaCaption()) + "<br>"); //$NON-NLS-1$ //$NON-NLS-2$
else
out.println("<br>");
break;

default:
Expand Down

0 comments on commit 6dad590

Please sign in to comment.