Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/4947252f93b4410a4d3ae2a8944abee00c287145
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
6 additions and
3 deletions
@ -48,7 +48,7 @@ namespace NzbDrone.Core.Providers
public virtual IList < Series > GetAllSeriesWithEpisodeCount ( )
{
var series = _database
. Fetch < Series , QualityProfile > ( @ "SELECT Series.SeriesId, Series.Title, Series.CleanTitle, Series.Status, Series.Overview, Series.AirsDayOfWeek, Series.AirTimes,
. Fetch < Series , QualityProfile > ( @ "SELECT Series.SeriesId, Series.Title, Series.CleanTitle, Series.Status, Series.Overview, Series.AirsDayOfWeek, Series.AirTimes,
Series . Language , Series . Path , Series . Monitored , Series . QualityProfileId , Series . SeasonFolder , Series . BacklogSetting , Series . Network ,
SUM ( CASE WHEN Ignored = 0 AND Airdate < = @ 0 THEN 1 ELSE 0 END ) AS EpisodeCount ,
SUM ( CASE WHEN Episodes . Ignored = 0 AND Episodes . EpisodeFileId > 0 AND Episodes . AirDate < = @ 0 THEN 1 ELSE 0 END ) as EpisodeFileCount ,
@ -201,7 +201,8 @@ namespace NzbDrone.Web.Controllers
EpisodeCount = s . EpisodeCount ,
EpisodeFileCount = s . EpisodeFileCount ,
NextAiring = s . NextAiring = = null ? String . Empty : s . NextAiring . Value . ToBestDateString ( ) ,
NextAiringSorter = s . NextAiring = = null ? "12/31/9999" : s . NextAiring . Value . ToString ( "MM/dd/yyyy" )
NextAiringSorter = s . NextAiring = = null ? "12/31/9999" : s . NextAiring . Value . ToString ( "MM/dd/yyyy" ) ,
AirTime = s . AirTimes
} ) . ToList ( ) ;
return series ;
@ -27,6 +27,7 @@ namespace NzbDrone.Web.Models
public string NextAiringSorter { get ; set ; }
public string Details { get ; set ; }
public string Network { get ; set ; }
public string AirTime { get ; set ; }
public IList < int > Seasons { get ; set ; }
@ -180,7 +180,8 @@
}
}, //Commands
{ sWidth: '60px', "mDataProp": "Details", "bSortable": false, "bVisible": false, "fnRender": function (row) {
var result = "<b>Airs Day of Week: </b>" + row.aData["AirsDayOfWeek"] + "<br/>" +
var result = "<b>Airs Day of Week: </b>" + row.aData["AirsDayOfWeek"] + "<br/>" +
"<b>Air Time: </b>" + row.aData["AirTime"] + "<br/>" +
"<b>Overview: </b>" + row.aData["Overview"] + "<br/>";
return result;
}