mirror of https://gitlab.com/bashrc2/epicyon
Debug
parent
c8cd5ab9bd
commit
8fcdd846b8
|
@ -9768,9 +9768,11 @@ class PubServer(BaseHTTPRequestHandler):
|
||||||
'show logout')
|
'show logout')
|
||||||
|
|
||||||
# replace https://domain/@nick with https://domain/users/nick
|
# replace https://domain/@nick with https://domain/users/nick
|
||||||
|
atPath = False
|
||||||
if self.path.startswith('/@'):
|
if self.path.startswith('/@'):
|
||||||
self.path = self.path.replace('/@', '/users/')
|
self.path = self.path.replace('/@', '/users/')
|
||||||
print('@ detected: ' + str(self.headers))
|
atPath = True
|
||||||
|
print('@ detected: ' + str(self.headers).replace('\n', ', '))
|
||||||
|
|
||||||
# redirect music to #nowplaying list
|
# redirect music to #nowplaying list
|
||||||
if self.path == '/music' or self.path == '/nowplaying':
|
if self.path == '/music' or self.path == '/nowplaying':
|
||||||
|
@ -9859,6 +9861,9 @@ class PubServer(BaseHTTPRequestHandler):
|
||||||
|
|
||||||
self._benchmarkGETtimings(GETstartTime, GETtimings,
|
self._benchmarkGETtimings(GETstartTime, GETtimings,
|
||||||
'create session', 'hasAccept')
|
'create session', 'hasAccept')
|
||||||
|
if atPath:
|
||||||
|
print('@ detected: html ' + str(htmlGET))
|
||||||
|
print('@ detected: path ' + self.path)
|
||||||
|
|
||||||
# get css
|
# get css
|
||||||
# Note that this comes before the busy flag to avoid conflicts
|
# Note that this comes before the busy flag to avoid conflicts
|
||||||
|
|
Loading…
Reference in New Issue