mirror of https://gitlab.com/bashrc2/epicyon
Change location
parent
30d85eb04b
commit
0a86daeccb
16
daemon.py
16
daemon.py
|
@ -14048,6 +14048,14 @@ class PubServer(BaseHTTPRequestHandler):
|
|||
'_GET', 'registered devices done',
|
||||
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
|
||||
|
||||
if htmlGET and usersInPath:
|
||||
# show the person options screen with view/follow/block/report
|
||||
if '?options=' in self.path:
|
||||
|
@ -14745,14 +14753,6 @@ class PubServer(BaseHTTPRequestHandler):
|
|||
'_GET', 'share image done',
|
||||
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
|
||||
# Note that this comes before the busy flag to avoid conflicts
|
||||
if self.path.startswith('/icons/'):
|
||||
|
|
Loading…
Reference in New Issue