diff --git a/op25/gr-op25_repeater/apps/http_server.py b/op25/gr-op25_repeater/apps/http_server.py index cf838df..abb95ab 100755 --- a/op25/gr-op25_repeater/apps/http_server.py +++ b/op25/gr-op25_repeater/apps/http_server.py @@ -58,8 +58,8 @@ def ensure_str(s): # for python 2/3 return ns def static_file(environ, start_response): - content_types = { 'png': 'image/png', 'jpeg': 'image/jpeg', 'jpg': 'image/jpeg', 'gif': 'image/gif', 'css': 'text/css', 'js': 'application/javascript', 'html': 'text/html'} - img_types = 'png jpg jpeg gif'.split() + content_types = { 'png': 'image/png', 'jpeg': 'image/jpeg', 'jpg': 'image/jpeg', 'gif': 'image/gif', 'css': 'text/css', 'js': 'application/javascript', 'html': 'text/html', 'ico': 'image/vnd.microsoft.icon'} + img_types = 'png jpg jpeg gif ico'.split() if environ['PATH_INFO'] == '/': filename = 'index.html' else: diff --git a/op25/gr-op25_repeater/www/images/favicon.ico b/op25/gr-op25_repeater/www/images/favicon.ico new file mode 100755 index 0000000..b47738f Binary files /dev/null and b/op25/gr-op25_repeater/www/images/favicon.ico differ