mirror of https://gitlab.com/bashrc2/epicyon
Debug
parent
6911b40606
commit
fe45873ffe
|
@ -8950,7 +8950,7 @@ class PubServer(BaseHTTPRequestHandler):
|
||||||
onionDomain: str, i2pDomain: str,
|
onionDomain: str, i2pDomain: str,
|
||||||
GETstartTime, GETtimings: {},
|
GETstartTime, GETtimings: {},
|
||||||
proxyType: str, cookie: str,
|
proxyType: str, cookie: str,
|
||||||
debug: str) -> bool:
|
debug: str, atPath: bool) -> bool:
|
||||||
"""Shows the profile for a person
|
"""Shows the profile for a person
|
||||||
"""
|
"""
|
||||||
# look up a person
|
# look up a person
|
||||||
|
@ -8998,6 +8998,8 @@ class PubServer(BaseHTTPRequestHandler):
|
||||||
'show profile posts')
|
'show profile posts')
|
||||||
else:
|
else:
|
||||||
if self._fetchAuthenticated():
|
if self._fetchAuthenticated():
|
||||||
|
if atPath:
|
||||||
|
print('@ deteceted actor ' + str(actorJson))
|
||||||
msg = json.dumps(actorJson,
|
msg = json.dumps(actorJson,
|
||||||
ensure_ascii=False).encode('utf-8')
|
ensure_ascii=False).encode('utf-8')
|
||||||
msglen = len(msg)
|
msglen = len(msg)
|
||||||
|
@ -11779,7 +11781,8 @@ class PubServer(BaseHTTPRequestHandler):
|
||||||
self.server.i2pDomain,
|
self.server.i2pDomain,
|
||||||
GETstartTime, GETtimings,
|
GETstartTime, GETtimings,
|
||||||
self.server.proxyType,
|
self.server.proxyType,
|
||||||
cookie, self.server.debug):
|
cookie, self.server.debug,
|
||||||
|
atPath):
|
||||||
return
|
return
|
||||||
|
|
||||||
self._benchmarkGETtimings(GETstartTime, GETtimings,
|
self._benchmarkGETtimings(GETstartTime, GETtimings,
|
||||||
|
|
Loading…
Reference in New Issue