diff --git a/NzbDrone.Api/Frontend/StaticResourceModule.cs b/NzbDrone.Api/Frontend/StaticResourceModule.cs index 0fceb918c..42ab38302 100644 --- a/NzbDrone.Api/Frontend/StaticResourceModule.cs +++ b/NzbDrone.Api/Frontend/StaticResourceModule.cs @@ -30,7 +30,7 @@ public StaticResourceModule(IDiskProvider diskProvider, ICacheManger cacheManger _indexCache = cacheManger.GetCache(typeof(StaticResourceModule)); Get["/{resource*}"] = x => Index(); - Get["/*"] = x => Index(); + Get["/"] = x => Index(); if (!RuntimeInfo.IsProduction) {