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

Episode status shows quality for downloaded episodes

pull/3113/head
Mark McDowall 12 years ago
parent 87114c77e6
commit e634022dd7

@ -21,8 +21,17 @@ define(
var hasFile = this.model.get('hasFile');
if (hasFile) {
icon = 'icon-ok';
tooltip = 'Episode downloaded';
var quality = this.model.get('episodeFile').quality;
if (quality.proper) {
this.$el.html('<span class="badge badge-info" title="Episode downloaded [PROPER]">{0}</span>'.format(quality.quality.name));
}
else {
this.$el.html('<span class="badge badge-inverse" title="Episode downloaded">{0}</span>'.format(quality.quality.name));
}
return this;
}
else {
if (!this.model.get('airDate')) {

Loading…
Cancel
Save