Change location

main
Bob Mottram 2021-12-16 22:07:16 +00:00
parent 30d85eb04b
commit 0a86daeccb
1 changed files with 8 additions and 8 deletions

View File

@ -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/'):