diff --git a/Builder/IISMainHandler/build.txt b/Builder/IISMainHandler/build.txt index 7264857..b6e8717 100644 --- a/Builder/IISMainHandler/build.txt +++ b/Builder/IISMainHandler/build.txt @@ -1 +1 @@ -1482 \ No newline at end of file +1484 \ No newline at end of file diff --git a/IISMainHandler/handlers/WrongUrlHandler.cs b/IISMainHandler/handlers/WrongUrlHandler.cs index 9c59db5..870b5c0 100644 --- a/IISMainHandler/handlers/WrongUrlHandler.cs +++ b/IISMainHandler/handlers/WrongUrlHandler.cs @@ -16,7 +16,7 @@ namespace FLocal.IISHandler.handlers { } protected override IEnumerable getSpecificData(WebContext context) { - if(!context.httprequest.Path.StartsWith("/static/")) context.LogError(new WrongUrlException()); + if(!context.httprequest.Path.StartsWith("/static/") && !context.httprequest.Path.StartsWith("/favicon")) context.LogError(new WrongUrlException()); return new XElement[] { new XElement("path", context.httprequest.Path) };