Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/2156d9ff9b7b123a4b695d33d44c48bba676a058?style=split&whitespace=ignore-eol
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
2 additions and
2 deletions
@ -55,9 +55,9 @@ namespace NzbDrone.Core.SeriesStats
return @ "SELECT
return @ "SELECT
SeriesId ,
SeriesId ,
SUM ( CASE WHEN ( Monitored = 1 AND AirdateUtc < = @currentDate ) OR EpisodeFileId > 0 THEN 1 ELSE 0 END ) AS EpisodeCount ,
SUM ( CASE WHEN ( Monitored = 1 AND AirdateUtc < = @currentDate ) OR EpisodeFileId > 0 THEN 1 ELSE 0 END ) AS EpisodeCount ,
SUM ( CASE WHEN Episode s. Episode FileId > 0 THEN 1 ELSE 0 END ) AS EpisodeFileCount ,
SUM ( CASE WHEN Episode FileId > 0 THEN 1 ELSE 0 END ) AS EpisodeFileCount ,
COUNT ( DISTINCT ( CASE WHEN SeasonNumber > 0 THEN SeasonNumber ELSE NULL END ) ) as SeasonCount ,
COUNT ( DISTINCT ( CASE WHEN SeasonNumber > 0 THEN SeasonNumber ELSE NULL END ) ) as SeasonCount ,
MIN ( CASE WHEN AirDateUtc < @currentDate THEN NULL ELSE AirDateUtc END ) AS NextAiringString
MIN ( CASE WHEN AirDateUtc < @currentDate OR EpisodeFileId > 0 THEN NULL ELSE AirDateUtc END ) AS NextAiringString
FROM Episodes ";
FROM Episodes ";
}
}