diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-12-10 23:42:22 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-12-10 23:42:22 -0500 |
commit | d3f6f9c70a0435a505d95a45b9bca2be2d71caaf (patch) | |
tree | d480536f17a5b09fd11207971fa78eb6ca939128 /src | |
parent | 6bdd49af13ed6bdfef8220c85ca32bca904d3a1e (diff) | |
download | SMAPI-d3f6f9c70a0435a505d95a45b9bca2be2d71caaf.tar.gz SMAPI-d3f6f9c70a0435a505d95a45b9bca2be2d71caaf.tar.bz2 SMAPI-d3f6f9c70a0435a505d95a45b9bca2be2d71caaf.zip |
fix log parser favicon (#405)
Diffstat (limited to 'src')
-rw-r--r-- | src/SMAPI.Web/Startup.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/SMAPI.Web/Startup.cs b/src/SMAPI.Web/Startup.cs index 16952124..2f2b0d11 100644 --- a/src/SMAPI.Web/Startup.cs +++ b/src/SMAPI.Web/Startup.cs @@ -89,6 +89,7 @@ namespace StardewModdingAPI.Web req.Host.Host != "localhost" && (req.Host.Host.StartsWith("api.") || req.Host.Host.StartsWith("log.")) && !req.Path.StartsWithSegments("/content") + && !req.Path.StartsWithSegments("/favicon.ico") )) // shortcut redirects |