14501451145214531454145514561457145814591460
* @param post * The post to mark as known */ public void markPostKnown(Post post) { post.setKnown(true); eventBus.post(new MarkPostKnownEvent(post)); touchConfiguration(); for (PostReply reply : getReplies(post.getId())) { markReplyKnown(reply); } }