Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/000b7bf9e013d8c020e45ccc55f202a98d622fee
You should set ROOT_URL correctly, otherwise the web may not work correctly.
7 changed files with
19 additions and
11 deletions
@ -52,7 +52,7 @@ namespace NzbDrone.Api.Series
s . EpisodeCount = stats . EpisodeCount ;
s . EpisodeFileCount = stats . EpisodeFileCount ;
s . Season sCount = stats . NumberOfSeasons ;
s . Season Count = stats . SeasonCount ;
s . NextAiring = stats . NextAiring ;
}
@ -14,7 +14,7 @@ namespace NzbDrone.Api.Series
//View Only
public String Title { get ; set ; }
public Int32 Season s Count { get ; set ; }
public Int32 Season Count { get ; set ; }
public Int32 EpisodeCount { get ; set ; }
public Int32 EpisodeFileCount { get ; set ; }
public SeriesStatusType Status { get ; set ; }
@ -6,7 +6,7 @@ namespace NzbDrone.Core.SeriesStats
public class SeriesStatistics : ResultSet
{
public int SeriesId { get ; set ; }
public int NumberOfSeasons { get ; set ; }
public int SeasonCount { get ; set ; }
public string NextAiringString { get ; set ; }
public int EpisodeFileCount { get ; set ; }
public int EpisodeCount { get ; set ; }
@ -27,7 +27,7 @@ namespace NzbDrone.Core.SeriesStats
SeriesId ,
SUM ( CASE WHEN Ignored = 0 AND Airdate < = @currentDate THEN 1 ELSE 0 END ) AS EpisodeCount ,
SUM ( CASE WHEN Ignored = 0 AND Episodes . EpisodeFileId > 0 AND AirDate < = @currentDate THEN 1 ELSE 0 END ) as EpisodeFileCount ,
MAX ( Episodes . SeasonNumber ) as NumberOfSeasons ,
MAX ( Episodes . SeasonNumber ) as SeasonCount ,
MIN ( CASE WHEN AirDate < @currentDate THEN NULL ELSE AirDate END ) as NextAiringString
FROM Episodes
GROUP BY SeriesId ";
@ -29,12 +29,12 @@
{{#if bestDateString}}
< span class = "label" > {{bestDateString}}< / span >
{{else}}
< span class = "label label-inverse" > {{status}}< / span >
< span class = "label label-inverse" > {{statusText }}< / span >
{{/if}}
< span class = "label label-info" > Season {{numberOfSeasons }}< / span >
< span class = "label label-info" > Season {{seasonCount }}< / span >
{{else}}
< span class = "label label-important" > {{status}}< / span >
< span class = "label label-info" > {{numberOfSeasons }} Seasons< / span >
< span class = "label label-important" > {{statusText }}< / span >
< span class = "label label-info" > {{seasonCount }} Seasons< / span >
{{/if}}
< / div >
< div class = "span2" >
@ -35,11 +35,18 @@
return "http://trakt.tv/show/" + this . get ( 'titleSlug' ) ;
} ,
isContinuing : function ( ) {
if ( this . get ( 'status' ) === 'Continuing' ) {
if ( this . get ( 'status' ) === 0 ) {
return true ;
}
return false ;
} ,
statusText : function ( ) {
if ( this . get ( 'status' ) === 0 ) {
return 'Continuing' ;
}
return 'Ended' ;
}
} ,
@ -48,7 +55,8 @@
episodeCount : 0 ,
qualityProfiles : qualityProfileCollection ,
rootFolders : rootFolders ,
isExisting : false
isExisting : false ,
status : 0
}
} ) ;
@ -76,7 +76,7 @@ define('app', function () {
if ( ! monitored ) {
return '<i class="icon-pause grid-icon" title="Not Monitored"></i>' ;
}
if ( status === 'Continuing' ) {
if ( status === 0 ) {
return '<i class="icon-play grid-icon" title="Continuing"></i>' ;
}