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: if postsOnPageCtr >= itemsPerPage:
break break
# count the pages # count the pages
if isTimelinePost: if isTimelinePost or boxname=='inbox' or boxname=='outbox':
postsCtr += 1 postsCtr += 1
if postsCtr >= itemsPerPage: if postsCtr >= itemsPerPage:
postsCtr = 0 postsCtr = 0