diff --git a/briar-core/src/org/briarproject/forum/ForumPostValidator.java b/briar-core/src/org/briarproject/forum/ForumPostValidator.java index aac7b6265de9f221f248afeabd014770138fc47c..8796bb7e6d430034d3b08fefbabfe75b93fa382e 100644 --- a/briar-core/src/org/briarproject/forum/ForumPostValidator.java +++ b/briar-core/src/org/briarproject/forum/ForumPostValidator.java @@ -84,7 +84,7 @@ class ForumPostValidator extends BdfMessageValidator { PublicKey key = keyParser.parsePublicKey(author.getPublicKey()); // Serialise the data to be signed BdfList signed = BdfList.of(g.getId(), m.getTimestamp(), parent, - authorList, contentType, body); + authorList, contentType, forumPostBody); // Verify the signature Signature signature = crypto.getSignature(); signature.initVerify(key);