mirror of https://gitlab.com/bashrc2/epicyon
debug
parent
a02946c82f
commit
1087afc445
|
@ -11153,11 +11153,13 @@ class PubServer(BaseHTTPRequestHandler):
|
||||||
'/users/' + nickname + '/statuses/')
|
'/users/' + nickname + '/statuses/')
|
||||||
|
|
||||||
# instance actor
|
# instance actor
|
||||||
|
print('actor test 1: ' + self.path)
|
||||||
if self.path == '/actor' or \
|
if self.path == '/actor' or \
|
||||||
self.path == '/users/actor' or \
|
self.path == '/users/actor' or \
|
||||||
self.path == '/Actor' or \
|
self.path == '/Actor' or \
|
||||||
self.path == '/users/Actor':
|
self.path == '/users/Actor':
|
||||||
self.path = '/users/inbox'
|
self.path = '/users/inbox'
|
||||||
|
print('actor test 2: ' + self.path)
|
||||||
if self._showInstanceActor(callingDomain, self.path,
|
if self._showInstanceActor(callingDomain, self.path,
|
||||||
self.server.baseDir,
|
self.server.baseDir,
|
||||||
self.server.httpPrefix,
|
self.server.httpPrefix,
|
||||||
|
@ -11170,8 +11172,10 @@ class PubServer(BaseHTTPRequestHandler):
|
||||||
self.server.proxyType,
|
self.server.proxyType,
|
||||||
None, self.server.debug,
|
None, self.server.debug,
|
||||||
self.server.enableSharedInbox):
|
self.server.enableSharedInbox):
|
||||||
|
print('actor test success')
|
||||||
return
|
return
|
||||||
else:
|
else:
|
||||||
|
print('actor test failed')
|
||||||
self._404()
|
self._404()
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue