Skip to content

Commit

Permalink
Fix bbb7e77
Browse files Browse the repository at this point in the history
  • Loading branch information
AnaelMobilia committed Apr 9, 2024
1 parent d400a82 commit eefc7f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/com/pcinpact/datastorage/DAO.java
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@ public void enregistrerCommentaireSiNouveau(final CommentaireItem unCommentaire)
CommentaireItem commentaireParent = this.chargerCommentaire(unCommentaire.getIdArticle(), unCommentaire.getIdParent());

// Citations - "En réponse à xxx"
String contenuHtml = Constantes.TAG_HTML_QUOTE_OPEN + "<b>En réponse à " + commentaireParent.getAuteur() + "</b>" + Constantes.TAG_HTML_QUOTE_CLOSE + commentaireParent.getCommentaire();
String contenuHtml = Constantes.TAG_HTML_QUOTE_OPEN + "<b>En réponse à " + commentaireParent.getAuteur() + "</b>" + Constantes.TAG_HTML_QUOTE_CLOSE + unCommentaire.getCommentaire();
unCommentaire.setCommentaire(contenuHtml);
}

Expand Down

0 comments on commit eefc7f6

Please sign in to comment.