Handle paging of inbox and outbox

main2
Bob Mottram 2019-09-24 23:02:13 +01:00
parent 70a9fb0929
commit 72867fd7bc
1 changed files with 1 additions and 1 deletions

View File

@ -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