mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-26 17:57:43 +00:00
Episode status shows quality for downloaded episodes
This commit is contained in:
parent
87114c77e6
commit
e634022dd7
1 changed files with 11 additions and 2 deletions
|
@ -21,8 +21,17 @@ define(
|
||||||
var hasFile = this.model.get('hasFile');
|
var hasFile = this.model.get('hasFile');
|
||||||
|
|
||||||
if (hasFile) {
|
if (hasFile) {
|
||||||
icon = 'icon-ok';
|
var quality = this.model.get('episodeFile').quality;
|
||||||
tooltip = 'Episode downloaded';
|
|
||||||
|
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 {
|
else {
|
||||||
if (!this.model.get('airDate')) {
|
if (!this.model.get('airDate')) {
|
||||||
|
|
Loading…
Reference in a new issue