Make post returned by post reply optional.
[Sone.git] / src / main / java / net / pterodactylus / sone / web / NewPage.java
index 9ea9e75..22d27c8 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - NewPage.java - Copyright © 2012 David Roden
+ * Sone - NewPage.java - Copyright © 2013 David Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -67,7 +67,7 @@ public class NewPage extends SoneTemplatePage {
                /* collect new elements from notifications. */
                Set<Post> posts = new HashSet<Post>(webInterface.getNewPosts());
                for (PostReply reply : webInterface.getNewReplies()) {
-                       posts.add(reply.getPost());
+                       posts.add(reply.getPost().get());
                }
 
                /* filter and sort them. */