We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 660c55b commit 7771269Copy full SHA for 7771269
bin/srv.py
@@ -160,7 +160,8 @@ def answer(topic=None):
160
html_needed = is_html_needed(user_agent)
161
options = parse_args(request.args)
162
163
- if topic in ['apple-touch-icon-precomposed.png', 'apple-touch-icon.png', 'apple-touch-icon-120x120-precomposed.png']:
+ if topic in ['apple-touch-icon-precomposed.png', 'apple-touch-icon.png', 'apple-touch-icon-120x120-precomposed.png'] \
164
+ or (topic is not None and any(topic.endswith('/'+x) for x in ['favicon.ico'])):
165
return ''
166
167
request_id = request.cookies.get('id')
0 commit comments