mirror of https://gitlab.com/bashrc2/epicyon
If actor is unexpected then check cc field when showing timeline for searched handle
parent
0ec2c45b50
commit
7cd0d969b5
|
@ -311,7 +311,13 @@ def htmlProfileAfterSearch(cssCache: {},
|
|||
if not item.get('actor'):
|
||||
continue
|
||||
if not isAnnouncedFeedItem and item['actor'] != personUrl:
|
||||
continue
|
||||
# if the actor is different then check the cc field
|
||||
if not item.get('cc'):
|
||||
continue
|
||||
if not isinstance(item['cc'], list):
|
||||
continue
|
||||
if personUrl not in item['cc']:
|
||||
continue
|
||||
|
||||
profileStr += \
|
||||
individualPostAsHtml(signingPrivateKeyPem,
|
||||
|
|
Loading…
Reference in New Issue