forked from indymedia/epicyon
Exit earlier
parent
b82a60bf8c
commit
71f2b04bfc
4
posts.py
4
posts.py
|
@ -1944,8 +1944,10 @@ def createSharedInboxIndex(baseDir: str,sharedBoxDir: str, \
|
|||
continue
|
||||
|
||||
actorNickname=getNicknameFromActor(postJsonObject['actor'])
|
||||
if not actorNickname:
|
||||
continue
|
||||
actorDomain,actorPort=getDomainFromActor(postJsonObject['actor'])
|
||||
if not (actorNickname and actorDomain):
|
||||
if not actorDomain:
|
||||
continue
|
||||
|
||||
# is the actor followed by this account?
|
||||
|
|
Loading…
Reference in New Issue