X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fweb%2FNewPage.java;h=9eab69a4b628644f93194704877ac39ad6fcd99a;hp=133a9d1651c65a6372feaa4e5765ce1628454ad0;hb=9acbc5bdec4ccb752e0856a501568b0bb6161579;hpb=1446a44248013bf023921c91f5e5d52254f63846 diff --git a/src/main/java/net/pterodactylus/sone/web/NewPage.java b/src/main/java/net/pterodactylus/sone/web/NewPage.java index 133a9d1..9eab69a 100644 --- a/src/main/java/net/pterodactylus/sone/web/NewPage.java +++ b/src/main/java/net/pterodactylus/sone/web/NewPage.java @@ -64,17 +64,17 @@ public class NewPage extends SoneTemplatePage { @Override protected void handleRequest(FreenetRequest request, TemplateContext templateContext) throws RedirectException { /* collect new elements from notifications. */ - Set posts = new HashSet(webInterface.getNewPosts(getCurrentSone(request.getToadletContext(), false))); - for (PostReply reply : webInterface.getNewReplies(getCurrentSone(request.getToadletContext(), false))) { + Set posts = new HashSet(webInterface.getNewPosts(getCurrentSoneWithoutCreatingSession(request.getToadletContext()))); + for (PostReply reply : webInterface.getNewReplies(getCurrentSoneWithoutCreatingSession(request.getToadletContext()))) { posts.add(reply.getPost().get()); } /* filter and sort them. */ - List sortedPosts = new ArrayList(posts); - Collections.sort(sortedPosts, Post.TIME_COMPARATOR); + List sortedPosts = new ArrayList<>(posts); + Collections.sort(sortedPosts, Post.NEWEST_FIRST); /* paginate them. */ - Pagination pagination = new Pagination(sortedPosts, webInterface.getCore().getPreferences().getPostsPerPage()).setPage(parseInt(request.getHttpRequest().getParam("page"), 0)); + Pagination pagination = new Pagination<>(sortedPosts, webInterface.getCore().getPreferences().getPostsPerPage()).setPage(parseInt(request.getHttpRequest().getParam("page"), 0)); templateContext.set("pagination", pagination); templateContext.set("posts", pagination.getItems()); }