From 23cf6f724a1f658b3fcd6b6e4f24ed9a3b2b43fa Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Tue, 24 Sep 2019 23:24:45 +0100 Subject: [PATCH] Extra timeline checks --- posts.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/posts.py b/posts.py index 61d0b3a3..a9b2717a 100644 --- a/posts.py +++ b/posts.py @@ -1858,7 +1858,7 @@ def createBoxBase(baseDir: str,boxname: str, \ if isPost: isTimelinePost=False - if currPage == pageNumber and postsOnPageCtr <= itemsPerPage: + if currPage <= pageNumber and postsOnPageCtr <= itemsPerPage: # get the post as json p = json.loads(postStr) @@ -1871,8 +1871,8 @@ def createBoxBase(baseDir: str,boxname: str, \ elif boxname=='tlreplies': if isDM(p) or isReply(p,boxActor): isTimelinePost=True - - if isTimelinePost: + + if isTimelinePost and currPage == pageNumber: # remove any capability so that it's not displayed if p.get('capability'): del p['capability'] @@ -1903,7 +1903,7 @@ def createBoxBase(baseDir: str,boxname: str, \ if postsOnPageCtr >= itemsPerPage: break # count the pages - if isTimelinePost or boxname=='inbox' or boxname=='outbox': + if isTimelinePost: postsCtr += 1 if postsCtr >= itemsPerPage: postsCtr = 0