mirror of https://gitlab.com/bashrc2/epicyon
Tidying
parent
8b809fc984
commit
2b318435b2
19
inbox.py
19
inbox.py
|
@ -1159,13 +1159,18 @@ def obtainReplyToAvatar(baseDir: str,personCache: {},postJsonObject: {}) -> None
|
||||||
"""Tries to obtain the actor for the person being replied to
|
"""Tries to obtain the actor for the person being replied to
|
||||||
so that their avatar can later be shown
|
so that their avatar can later be shown
|
||||||
"""
|
"""
|
||||||
lookupActor=None
|
if not postJsonObject.get('object'):
|
||||||
if postJsonObject.get('object'):
|
return
|
||||||
if isinstance(postJsonObject['object'], dict):
|
|
||||||
if postJsonObject['object'].get('inReplyTo'):
|
if not isinstance(postJsonObject['object'], dict):
|
||||||
lookupActor=postJsonObject['object']['inReplyTo']
|
return
|
||||||
if lookupActor:
|
|
||||||
getPersonFromCache(baseDir,lookupActor,personCache)
|
if not postJsonObject['object'].get('inReplyTo'):
|
||||||
|
return
|
||||||
|
|
||||||
|
lookupActor=postJsonObject['object']['inReplyTo']
|
||||||
|
if lookupActor:
|
||||||
|
getPersonFromCache(baseDir,lookupActor,personCache)
|
||||||
|
|
||||||
def inboxAfterCapabilities(session,keyId: str,handle: str,messageJson: {}, \
|
def inboxAfterCapabilities(session,keyId: str,handle: str,messageJson: {}, \
|
||||||
baseDir: str,httpPrefix: str,sendThreads: [], \
|
baseDir: str,httpPrefix: str,sendThreads: [], \
|
||||||
|
|
Loading…
Reference in New Issue