diff --git a/GK6X/WebGUI.cs b/GK6X/WebGUI.cs index 25983ed..a9d84f8 100644 --- a/GK6X/WebGUI.cs +++ b/GK6X/WebGUI.cs @@ -908,6 +908,14 @@ private void Process(HttpListenerContext context) responseBuffer = File.ReadAllBytes(file); contentType = "text/css"; break; + case ".ttf": + responseBuffer = File.ReadAllBytes(file); + contentType = "font/ttf"; + break; + case ".woff": + responseBuffer = File.ReadAllBytes(file); + contentType = "font/woff"; + break; default: Program.Log("Unhandled file type " + extension + " " + context.Request.Url.AbsolutePath); break;