Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/4fedccf6d331af1237af99b2b6efb98efb8b7d5f You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed EpisodeStatusCell

pull/24/head
Mark McDowall 12 years ago
parent 7ae7c488f3
commit 4fedccf6d3

@ -17,13 +17,14 @@ define(
var tooltip;
var hasAired = Date.create(this.model.get('airDate')).isBefore(Date.create());
var hasFile = this.model.get('hasFile');
if (hasAired) {
if (hasFile) {
icon = 'icon-ok';
tooltip = 'Episode downloaded';
}
else {
if (this.model.get('hasAired')) {
if (hasAired) {
icon = 'icon-warning-sign';
tooltip = 'Episode missing from disk';
}

Loading…
Cancel
Save