mirror of https://gitlab.com/bashrc2/epicyon
Test that onion or i2p domain is active
parent
cc9427ae4e
commit
a2e864a1bc
19
inbox.py
19
inbox.py
|
@ -3301,15 +3301,16 @@ def _inbox_after_initial(recent_posts_cache: {}, max_recent_posts: int,
|
||||||
"""
|
"""
|
||||||
# if this is a clearnet instance then replace any onion/i2p
|
# if this is a clearnet instance then replace any onion/i2p
|
||||||
# domains with the account domain
|
# domains with the account domain
|
||||||
message_str = json.dumps(message_json, ensure_ascii=False)
|
if onion_domain or i2p_domain:
|
||||||
if onion_domain:
|
message_str = json.dumps(message_json, ensure_ascii=False)
|
||||||
if onion_domain in message_str:
|
if onion_domain:
|
||||||
message_str = message_str.replace(onion_domain, domain)
|
if onion_domain in message_str:
|
||||||
message_json = json.loads(message_str)
|
message_str = message_str.replace(onion_domain, domain)
|
||||||
if i2p_domain:
|
message_json = json.loads(message_str)
|
||||||
if i2p_domain in message_str:
|
if i2p_domain:
|
||||||
message_str = message_str.replace(i2p_domain, domain)
|
if i2p_domain in message_str:
|
||||||
message_json = json.loads(message_str)
|
message_str = message_str.replace(i2p_domain, domain)
|
||||||
|
message_json = json.loads(message_str)
|
||||||
|
|
||||||
actor = key_id
|
actor = key_id
|
||||||
if '#' in actor:
|
if '#' in actor:
|
||||||
|
|
Loading…
Reference in New Issue