Skip to content

Commit

Permalink
sepinf-inc#2286: change chat title
Browse files Browse the repository at this point in the history
  • Loading branch information
aberenguel committed Aug 16, 2024
1 parent ebae6b5 commit aa9bb41
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,7 @@ public byte[] generateNextChatHtml(IItemReader c, List<UfedMessage> msgs) throws
ByteArrayOutputStream bout = new ByteArrayOutputStream();
PrintWriter out = new PrintWriter(new OutputStreamWriter(bout, "UTF-8")); //$NON-NLS-1$

String[] split = c.getName().split("_", 3); //$NON-NLS-1$
String title = split[split.length - 1];
String title = UFEDChatParser.getChatName(c);
printMessageFileHeader(out, title, c.getName(), null);
if (currentMsg > 0)
out.println("<div class=\"linha\"><div class=\"date\">" //$NON-NLS-1$
Expand Down

0 comments on commit aa9bb41

Please sign in to comment.