forked from indymedia/epicyon
Fix condition
parent
ff8bdaa9cf
commit
b58298d8aa
|
@ -1068,7 +1068,7 @@ class PubServer(BaseHTTPRequestHandler):
|
||||||
|
|
||||||
if self.path.startswith('/icons/') or \
|
if self.path.startswith('/icons/') or \
|
||||||
self.path.startswith('/avatars/') or \
|
self.path.startswith('/avatars/') or \
|
||||||
self.path.startswith('/favicon.ico'):
|
self.path.startswith('/favicon.ico') or \
|
||||||
self.path.startswith('/newswire.xml'):
|
self.path.startswith('/newswire.xml'):
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue