Skip to content

Commit

Permalink
💄 Higher limit for social media posts.
Browse files Browse the repository at this point in the history
Signed-off-by: Marcus Fihlon <[email protected]>
  • Loading branch information
McPringle committed Apr 9, 2024
1 parent aeca9e4 commit e4778da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/swiss/fihlon/apus/ui/view/SocialView.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ private void updateScheduler() {

private void updateMessages() {
messageContainer.removeAll();
for (final Message message : socialService.getMessages(30)) {
for (final Message message : socialService.getMessages(50)) {
messageContainer.add(new MessageView(message, socialService, configuration));
}
}
Expand Down

0 comments on commit e4778da

Please sign in to comment.