Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/c49e9a386ba08508fb41f4395275740e57dbd0f3
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
5 additions and
8 deletions
@ -69,7 +69,7 @@ namespace PlexRequests.UI.Modules
private string AuthToken = > Cache . GetOrSet ( CacheKeys . TvDbToken , TvApi . Authenticate , 50 ) ;
private Negotiator RequestLoad ( )
{
{
Log . Trace ( "Loading Index" ) ;
return View [ "Search/Index" ] ;
}
@ -56,10 +56,10 @@ namespace PlexRequests.UI.Modules
private Response LoginUser ( )
{
var username = Request . Form . username ;
var username = Request . Form . username .Value ;
// Add to the session
Session [ SessionKeys . UsernameKey ] = username ;
Session [ SessionKeys . UsernameKey ] = ( string ) username ;
return Response . AsJson ( new { Result = true } ) ;
}
@ -294,11 +294,8 @@
</ItemGroup>
<Import Project= "$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PropertyGroup >
<PostBuildEvent >
if $(ConfigurationName) == Debug (
xcopy /s /y /R "$(SolutionDir)packages\Nancy.Viewengines.Razor.1.4.1\BuildProviders\Nancy.ViewEngines.Razor.BuildProviders.dll" "$(ProjectDir)bin\"
xcopy /s /y /R "$(SolutionDir)packages\Nancy.Viewengines.Razor.1.4.1\lib\Net40\Nancy.ViewEngines.Razor.dll" "$(ProjectDir)bin\"
)</PostBuildEvent>
<PostBuildEvent >
</PostBuildEvent>
</PropertyGroup>
<Import Project= "$(SolutionDir)\.nuget\NuGet.targets" Condition= "Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
<Import Project= "..\packages\Nancy.Viewengines.Razor.1.4.1\build\Nancy.ViewEngines.Razor.targets" Condition= "Exists('..\packages\Nancy.Viewengines.Razor.1.4.1\build\Nancy.ViewEngines.Razor.targets')" />