Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/e827af7bedb67aa7801cf7b7a71087b445748965
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
12 additions and
3 deletions
@ -533,7 +533,10 @@ namespace Ombi.Core.Engine
}
else
{
x . ShowSubscribe = true ;
if ( ! x . Available & & ! x . Available4K & & ( ! x . Denied ? ? true ) & & ( ! x . Denied4K ? ? true ) )
{
x . ShowSubscribe = true ;
}
var hasSub = sub . FirstOrDefault ( r = > r . RequestId = = x . Id ) ;
x . Subscribed = hasSub ! = null ;
}
@ -270,7 +270,10 @@ namespace Ombi.Core.Engine
}
else
{
x . ShowSubscribe = true ;
if ( ! x . Available & & ( ! x . Denied ? ? false ) )
{
x . ShowSubscribe = true ;
}
var hasSub = sub . FirstOrDefault ( r = > r . RequestId = = x . Id ) ;
x . Subscribed = hasSub ! = null ;
}
@ -886,7 +886,10 @@ namespace Ombi.Core.Engine
}
else
{
x . ShowSubscribe = true ;
if ( ! x . Available & & ( ! x . Denied ? ? true ) )
{
x . ShowSubscribe = true ;
}
var result = relevantSubs . FirstOrDefault ( s = > s . RequestId = = x . Id ) ;
x . Subscribed = result ! = null ;
}