updated nancy to 0.17.1.0

This commit is contained in:
kay.one 2013-07-06 16:29:01 -07:00
parent c83a67c9e2
commit 92c3fe61f2
10 changed files with 41 additions and 38 deletions

View file

@ -24,7 +24,8 @@ namespace NzbDrone.Api.Frontend
_indexCache = cacheManger.GetCache<string>(typeof(IndexModule));
//Serve anything that doesn't have an extension
Get[@"/(.*)"] = x => Index();
Get[@"^(?:.*)$"] = x => Index();
Get[@"/"] = x => Index();
}
private object Index()