X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fweb%2FWebInterface.java;h=d0034dd358921eee08de7c1f933174575f409ba4;hb=ff0704341bf464cf0d15125962b082e71a038ab7;hp=1e04105a6db0d3fd788308ede8f7e2f08242deeb;hpb=29daf9b1a853061c245c6225e5e5ea8f553c87a7;p=Sone.git diff --git a/src/main/java/net/pterodactylus/sone/web/WebInterface.java b/src/main/java/net/pterodactylus/sone/web/WebInterface.java index 1e04105..d0034dd 100644 --- a/src/main/java/net/pterodactylus/sone/web/WebInterface.java +++ b/src/main/java/net/pterodactylus/sone/web/WebInterface.java @@ -196,7 +196,7 @@ public class WebInterface implements CoreListener { public WebInterface(SonePlugin sonePlugin) { this.sonePlugin = sonePlugin; formPassword = sonePlugin.pluginRespirator().getToadletContainer().getFormPassword(); - soneTextParser = new SoneTextParser(getCore()); + soneTextParser = new SoneTextParser(getCore(), getCore()); templateContextFactory = new TemplateContextFactory(); templateContextFactory.addAccessor(Object.class, new ReflectionAccessor()); @@ -727,6 +727,7 @@ public class WebInterface implements CoreListener { notificationManager.addNotification(newPostNotification); if (!getMentionedSones(post.getText()).isEmpty()) { mentionNotification.add(post); + notificationManager.addNotification(mentionNotification); } } else { getCore().markPostKnown(post); @@ -746,6 +747,7 @@ public class WebInterface implements CoreListener { notificationManager.addNotification(newReplyNotification); if (!getMentionedSones(reply.getText()).isEmpty()) { mentionNotification.add(reply.getPost()); + notificationManager.addNotification(mentionNotification); } } else { getCore().markReplyKnown(reply);