This commit is contained in:
2024-05-24 23:14:00 +02:00
parent 958425feef
commit 5d494d0ad4

View File

@@ -54,7 +54,7 @@ public class JodelPost {
// add a comment if it is really a comment
public boolean addComment(JodelPost post, long parent) {
// check if the post a direct comment
// check if the post is a direct comment
if (parent == this.id) {
// add the comment
this.comments.add(post);