Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/9330f0aefc3035d07c31b79796438946d6bbe6c4?style=unified&whitespace=show-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed SeriesStats query

pull/2/head
Mark McDowall 12 years ago
parent 3f03a0854a
commit 9330f0aefc

@ -57,7 +57,7 @@ namespace NzbDrone.Core.SeriesStats
SUM(CASE WHEN Monitored = 1 AND AirdateUtc <= @currentDate THEN 1 ELSE 0 END) AS EpisodeCount,
SUM(CASE WHEN Monitored = 1 AND Episodes.EpisodeFileId > 0 AND AirDateUtc <= @currentDate THEN 1 ELSE 0 END) AS EpisodeFileCount,
MAX(Episodes.SeasonNumber) as SeasonCount,
MIN(CASE WHEN AirDateUtc < @currentDate THEN NULL ELSE AirDate END) AS NextAiringString
MIN(CASE WHEN AirDateUtc < @currentDate THEN NULL ELSE AirDateUtc END) AS NextAiringString
FROM Episodes";
}

Loading…
Cancel
Save