From 72867fd7bc2d1b176703bb7495dd1ef65110bd3c Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Tue, 24 Sep 2019 23:02:13 +0100 Subject: [PATCH] Handle paging of inbox and outbox --- posts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posts.py b/posts.py index 8fab4174..61d0b3a3 100644 --- a/posts.py +++ b/posts.py @@ -1903,7 +1903,7 @@ def createBoxBase(baseDir: str,boxname: str, \ if postsOnPageCtr >= itemsPerPage: break # count the pages - if isTimelinePost: + if isTimelinePost or boxname=='inbox' or boxname=='outbox': postsCtr += 1 if postsCtr >= itemsPerPage: postsCtr = 0