From 4183fecaca72d736da74787162990da058eb9b30 Mon Sep 17 00:00:00 2001 From: Keivan Beigi Date: Mon, 19 Aug 2013 19:39:58 -0700 Subject: [PATCH] fixed index not loading --- NzbDrone.Api/Frontend/StaticResourceModule.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 @@ namespace NzbDrone.Api.Frontend _indexCache = cacheManger.GetCache(typeof(StaticResourceModule)); Get["/{resource*}"] = x => Index(); - Get["/*"] = x => Index(); + Get["/"] = x => Index(); if (!RuntimeInfo.IsProduction) {