mirror of https://gitlab.com/bashrc2/epicyon
Better variable name
parent
c86c508e09
commit
dbeaf8bf76
|
@ -2186,19 +2186,19 @@ def individual_post_as_html(signing_priv_key_pem: str,
|
||||||
actor_nickname = 'dev'
|
actor_nickname = 'dev'
|
||||||
actor_domain, _ = get_domain_from_actor(post_actor)
|
actor_domain, _ = get_domain_from_actor(post_actor)
|
||||||
|
|
||||||
actor_proxied = ap_proxy_type(post_json_object['object'])
|
post_proxied = ap_proxy_type(post_json_object['object'])
|
||||||
if actor_proxied:
|
if post_proxied:
|
||||||
actor_proxied = remove_html(actor_proxied)
|
post_proxied = remove_html(post_proxied)
|
||||||
if '://' in actor_proxied:
|
if '://' in post_proxied:
|
||||||
proxy_str = 'Proxy'
|
proxy_str = 'Proxy'
|
||||||
if translate.get(proxy_str):
|
if translate.get(proxy_str):
|
||||||
proxy_str = translate[proxy_str]
|
proxy_str = translate[proxy_str]
|
||||||
actor_proxied = '<a href="' + actor_proxied + \
|
post_proxied = '<a href="' + post_proxied + \
|
||||||
'" target="_blank" rel="nofollow noopener noreferrer">' + \
|
'" target="_blank" rel="nofollow noopener noreferrer">' + \
|
||||||
proxy_str + '</a>'
|
proxy_str + '</a>'
|
||||||
elif '/' in actor_proxied:
|
elif '/' in post_proxied:
|
||||||
actor_proxied = actor_proxied.split('/')[-1]
|
post_proxied = post_proxied.split('/')[-1]
|
||||||
title_str += '[' + actor_proxied + '] '
|
title_str += '[' + post_proxied + '] '
|
||||||
|
|
||||||
# scope icon before display name
|
# scope icon before display name
|
||||||
if is_followers_post(post_json_object):
|
if is_followers_post(post_json_object):
|
||||||
|
|
Loading…
Reference in New Issue