mirror of https://gitlab.com/bashrc2/epicyon
-mReplace typically https with http
parent
06af2b892f
commit
32e47dadaa
|
@ -13334,11 +13334,14 @@ class PubServer(BaseHTTPRequestHandler):
|
||||||
if self._secure_mode(curr_session, proxy_type):
|
if self._secure_mode(curr_session, proxy_type):
|
||||||
accept_str = self.headers['Accept']
|
accept_str = self.headers['Accept']
|
||||||
msg_str = json.dumps(actor_json, ensure_ascii=False)
|
msg_str = json.dumps(actor_json, ensure_ascii=False)
|
||||||
|
curr_http_prefix = self.server.http_prefix + '://'
|
||||||
if is_onion_request(calling_domain, referer_domain,
|
if is_onion_request(calling_domain, referer_domain,
|
||||||
self.server.domain, onion_domain):
|
self.server.domain, onion_domain):
|
||||||
msg_str = msg_str.replace(domain, onion_domain)
|
msg_str = msg_str.replace(curr_http_prefix + domain,
|
||||||
|
'http://' + onion_domain)
|
||||||
elif is_i2p_request(calling_domain, referer_domain,
|
elif is_i2p_request(calling_domain, referer_domain,
|
||||||
self.server.domain, i2p_domain):
|
curr_http_prefix + self.server.domain,
|
||||||
|
'http://' + i2p_domain):
|
||||||
msg_str = msg_str.replace(domain, i2p_domain)
|
msg_str = msg_str.replace(domain, i2p_domain)
|
||||||
msg = msg_str.encode('utf-8')
|
msg = msg_str.encode('utf-8')
|
||||||
msglen = len(msg)
|
msglen = len(msg)
|
||||||
|
|
Loading…
Reference in New Issue