Increase the possible length of “returnPage” because 64 is too short.
[Sone.git] / src / main / java / net / pterodactylus / sone / web / DismissNotificationPage.java
index bdbf008..b1838da 100644 (file)
@@ -50,11 +50,11 @@ public class DismissNotificationPage extends SoneTemplatePage {
        protected void processTemplate(Request request, Template template) throws RedirectException {
                super.processTemplate(request, template);
                String notificationId = request.getHttpRequest().getPartAsStringFailsafe("notification", 36);
-               Notification notification = webInterface.getCore().getNotifications().getNotification(notificationId);
+               Notification notification = webInterface.getNotifications().getNotification(notificationId);
                if ((notification != null) && notification.isDismissable()) {
-                       webInterface.getCore().getNotifications().removeNotification(notification);
+                       notification.dismiss();
                }
-               String returnPage = request.getHttpRequest().getPartAsStringFailsafe("returnPage", 64);
+               String returnPage = request.getHttpRequest().getPartAsStringFailsafe("returnPage", 256);
                throw new RedirectException(returnPage);
        }