Mercurial Hosting > luan
changeset 1772:f7b90d9a4639
add .ico
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Sun, 25 Jun 2023 15:21:08 -0600 |
parents | c62324841dfb |
children | b914a726061f |
files | src/goodjava/webserver/handlers/ContentTypeHandler.java |
diffstat | 1 files changed, 1 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/goodjava/webserver/handlers/ContentTypeHandler.java Sun Jun 25 15:05:09 2023 -0600 +++ b/src/goodjava/webserver/handlers/ContentTypeHandler.java Sun Jun 25 15:21:08 2023 -0600 @@ -36,6 +36,7 @@ map.put( "doc", "application/msword" ); map.put( "docx", "application/vnd.openxmlformats-officedocument.wordprocessingml.document" ); map.put( "svg", "image/svg+xml" ); + map.put( "ico", "image/x-icon" ); // add more as need }