From 526f69c8b9b53a646a134e76334ca3fd71c49654 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Mon, 23 Sep 2019 22:14:34 +0100 Subject: [PATCH] Replies check --- posts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posts.py b/posts.py index f9e13131..cce68738 100644 --- a/posts.py +++ b/posts.py @@ -1706,7 +1706,7 @@ def createBoxBase(baseDir: str,boxname: str, \ ocapAlways: bool,pageNumber=None) -> {}: """Constructs the box feed for a person with the given nickname """ - if boxname!='inbox' and boxname!='dm' and boxname!='outbox': + if boxname!='inbox' and boxname!='dm' and boxname!='tlreplies' and boxname!='outbox': return None if boxname!='dm' and boxname!='tlreplies': boxDir = createPersonDir(nickname,domain,baseDir,boxname)