From 77dc42c3436a7b84ffc2000faedc3f9f0ef17928 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Tue, 6 Oct 2020 10:41:04 +0100 Subject: [PATCH] Logic sequence --- newswire.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/newswire.py b/newswire.py index ea6c62c8..835b462e 100644 --- a/newswire.py +++ b/newswire.py @@ -255,13 +255,13 @@ def addLocalBlogsToNewswire(baseDir: str, newswire: {}, nickname = handle.split('@')[0] if not isTrustedByNewswire(baseDir, nickname): continue - accountDir = os.path.join(baseDir + '/accounts', handle) # has this account been suspended? if isSuspended(baseDir, nickname): continue # is there a blogs timeline for this account? + accountDir = os.path.join(baseDir + '/accounts', handle) blogsIndex = accountDir + '/tlblogs.index' if os.path.isfile(blogsIndex): domain = handle.split('@')[1]