mirror of https://gitlab.com/bashrc2/epicyon
Info for local nicknames
parent
b0e0bdbd69
commit
fc8932f627
|
@ -1448,7 +1448,14 @@ class PubServer(BaseHTTPRequestHandler):
|
||||||
searchHandle = moderationText
|
searchHandle = moderationText
|
||||||
if searchHandle:
|
if searchHandle:
|
||||||
if '@' not in searchHandle:
|
if '@' not in searchHandle:
|
||||||
searchHandle = None
|
# is this a local nickname on this instance?
|
||||||
|
localHandle = \
|
||||||
|
searchHandle + '@' + self.server.domain
|
||||||
|
if os.path.isdir(self.server.baseDir +
|
||||||
|
'/accounts/' + localHandle):
|
||||||
|
searchHandle = localHandle
|
||||||
|
else:
|
||||||
|
searchHandle = None
|
||||||
if searchHandle:
|
if searchHandle:
|
||||||
msg = \
|
msg = \
|
||||||
htmlAccountInfo(self.server.cssCache,
|
htmlAccountInfo(self.server.cssCache,
|
||||||
|
|
Loading…
Reference in New Issue