From: David ‘Bombe’ Roden Date: Tue, 28 Jun 2011 20:29:51 +0000 (+0200) Subject: Accept all replies, they will be filtered later in the notifications. X-Git-Tag: 0.6.6^2~51 X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=commitdiff_plain;h=90c1cc77e0a58279284e4378f8ea4cc63f6dd30e Accept all replies, they will be filtered later in the notifications. --- diff --git a/src/main/java/net/pterodactylus/sone/web/WebInterface.java b/src/main/java/net/pterodactylus/sone/web/WebInterface.java index 73436c7..94a0fb6 100644 --- a/src/main/java/net/pterodactylus/sone/web/WebInterface.java +++ b/src/main/java/net/pterodactylus/sone/web/WebInterface.java @@ -766,9 +766,6 @@ public class WebInterface implements CoreListener { */ @Override public void newReplyFound(Reply reply) { - if (reply.getPost().getSone() == null) { - return; - } boolean isLocal = getCore().isLocalSone(reply.getSone()); if (isLocal) { localReplyNotification.add(reply);