From 1fb7811d08ab0a4608a4a26ec24f09f90f70e965 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sat, 23 Nov 2019 21:18:35 +0000 Subject: [PATCH] Always deliver to individual inboxes --- inbox.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/inbox.py b/inbox.py index e9429339f..6d083af50 100644 --- a/inbox.py +++ b/inbox.py @@ -2124,7 +2124,8 @@ def runInboxQueue(projectVersion: str, \ # were specifically addresses to particular accounts noOfFollowItems=len(recipientsDictFollowers.items()) if noOfFollowItems>0: - if noOfFollowItems<5: + # always deliver to individual inboxes + if noOfFollowItems<999999: if debug: print('DEBUG: moving '+str(noOfFollowItems)+ \ ' inbox posts addressed to followers')