mirror of https://gitlab.com/bashrc2/epicyon
Check that attributedTo is a string
parent
4c14d606ef
commit
82507d418e
8
posts.py
8
posts.py
|
@ -5062,22 +5062,22 @@ def getOriginalPostFromAnnounceUrl(announceUrl: str, baseDir: str,
|
||||||
return None, None, None
|
return None, None, None
|
||||||
if not isinstance(announcePostJson['object'], str):
|
if not isinstance(announcePostJson['object'], str):
|
||||||
return None, None, None
|
return None, None, None
|
||||||
|
actor = url = None
|
||||||
# do we have the original post?
|
# do we have the original post?
|
||||||
origPostId = announcePostJson['object']
|
origPostId = announcePostJson['object']
|
||||||
origFilename = locatePost(baseDir, nickname, domain, origPostId)
|
origFilename = locatePost(baseDir, nickname, domain, origPostId)
|
||||||
actor = url = None
|
|
||||||
if origFilename:
|
if origFilename:
|
||||||
# we have the original post
|
# we have the original post
|
||||||
origPostJson = loadJson(origFilename, 0, 1)
|
origPostJson = loadJson(origFilename, 0, 1)
|
||||||
if origPostJson:
|
if origPostJson:
|
||||||
url = announcePostJson['object']
|
|
||||||
if hasObjectDict(origPostJson):
|
if hasObjectDict(origPostJson):
|
||||||
if origPostJson['object'].get('attributedTo'):
|
if origPostJson['object'].get('attributedTo'):
|
||||||
|
if isinstance(origPostJson['object']['attributedTo'], str):
|
||||||
actor = origPostJson['object']['attributedTo']
|
actor = origPostJson['object']['attributedTo']
|
||||||
|
url = origPostId
|
||||||
elif origPostJson['object'].get('actor'):
|
elif origPostJson['object'].get('actor'):
|
||||||
actor = origPostJson['actor']
|
actor = origPostJson['actor']
|
||||||
else:
|
url = origPostId
|
||||||
url = None
|
|
||||||
else:
|
else:
|
||||||
# we don't have the original post
|
# we don't have the original post
|
||||||
if hasUsersPath(origPostId):
|
if hasUsersPath(origPostId):
|
||||||
|
|
Loading…
Reference in New Issue