forked from indymedia/epicyon
Special case for updates to followers
parent
351a21b397
commit
6fae77f138
3
posts.py
3
posts.py
|
@ -661,7 +661,8 @@ def postIsAddressedToFollowers(baseDir: str,
|
||||||
return False
|
return False
|
||||||
toList=[]
|
toList=[]
|
||||||
ccList=[]
|
ccList=[]
|
||||||
if isinstance(postJsonObject['object'], dict):
|
if postJsonObject['type']!='Update' and \
|
||||||
|
isinstance(postJsonObject['object'], dict):
|
||||||
if not postJsonObject['object'].get('to'):
|
if not postJsonObject['object'].get('to'):
|
||||||
return False
|
return False
|
||||||
toList=postJsonObject['object']['to']
|
toList=postJsonObject['object']['to']
|
||||||
|
|
Loading…
Reference in New Issue