Change location

main
Bob Mottram 2021-12-16 22:05:40 +00:00
parent e1b349c0fc
commit 30d85eb04b
1 changed files with 8 additions and 8 deletions

View File

@ -14745,6 +14745,14 @@ 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/'):
@ -14763,14 +14771,6 @@ class PubServer(BaseHTTPRequestHandler):
'_GET', 'help screen 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
# cached avatar images
# Note that this comes before the busy flag to avoid conflicts
if self.path.startswith('/avatars/'):