mirror of https://gitlab.com/bashrc2/epicyon
Change location
parent
e1b349c0fc
commit
30d85eb04b
16
daemon.py
16
daemon.py
|
@ -14745,6 +14745,14 @@ class PubServer(BaseHTTPRequestHandler):
|
||||||
'_GET', 'share image done',
|
'_GET', 'share image done',
|
||||||
self.server.debug)
|
self.server.debug)
|
||||||
|
|
||||||
|
# cached favicon images
|
||||||
|
# Note that this comes before the busy flag to avoid conflicts
|
||||||
|
if self.path.startswith('/favicons/'):
|
||||||
|
self._showCachedFavicon(refererDomain, self.path,
|
||||||
|
self.server.baseDir,
|
||||||
|
GETstartTime)
|
||||||
|
return
|
||||||
|
|
||||||
# icon images
|
# icon images
|
||||||
# Note that this comes before the busy flag to avoid conflicts
|
# Note that this comes before the busy flag to avoid conflicts
|
||||||
if self.path.startswith('/icons/'):
|
if self.path.startswith('/icons/'):
|
||||||
|
@ -14763,14 +14771,6 @@ class PubServer(BaseHTTPRequestHandler):
|
||||||
'_GET', 'help screen image done',
|
'_GET', 'help screen image done',
|
||||||
self.server.debug)
|
self.server.debug)
|
||||||
|
|
||||||
# cached favicon images
|
|
||||||
# Note that this comes before the busy flag to avoid conflicts
|
|
||||||
if self.path.startswith('/favicons/'):
|
|
||||||
self._showCachedFavicon(refererDomain, self.path,
|
|
||||||
self.server.baseDir,
|
|
||||||
GETstartTime)
|
|
||||||
return
|
|
||||||
|
|
||||||
# cached avatar images
|
# cached avatar images
|
||||||
# Note that this comes before the busy flag to avoid conflicts
|
# Note that this comes before the busy flag to avoid conflicts
|
||||||
if self.path.startswith('/avatars/'):
|
if self.path.startswith('/avatars/'):
|
||||||
|
|
Loading…
Reference in New Issue