Skip to content

Commit

Permalink
fixed page wrap
Browse files Browse the repository at this point in the history
  • Loading branch information
Luke100000 committed Jul 31, 2023
1 parent c950386 commit 8fb958f
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1509,7 +1509,11 @@ private void refreshContentList() {
// last page reached, go one back
if (contents.isEmpty() && selectionPage > 0) {
selectionPage--;
refreshContentList();
if (subscriptionFilter == SubscriptionFilter.LIBRARY) {
loadPage();
} else {
refreshContentList();
}
return;
}

Expand Down

0 comments on commit 8fb958f

Please sign in to comment.