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
|
continue
|
||||||
|
|
||||||
actorNickname=getNicknameFromActor(postJsonObject['actor'])
|
actorNickname=getNicknameFromActor(postJsonObject['actor'])
|
||||||
|
if not actorNickname:
|
||||||
|
continue
|
||||||
actorDomain,actorPort=getDomainFromActor(postJsonObject['actor'])
|
actorDomain,actorPort=getDomainFromActor(postJsonObject['actor'])
|
||||||
if not (actorNickname and actorDomain):
|
if not actorDomain:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
# is the actor followed by this account?
|
# is the actor followed by this account?
|
||||||
|
|
Loading…
Reference in New Issue