diff --git a/UI/Cells/EpisodeStatusCell.js b/UI/Cells/EpisodeStatusCell.js
index b467c3d07..812802bfb 100644
--- a/UI/Cells/EpisodeStatusCell.js
+++ b/UI/Cells/EpisodeStatusCell.js
@@ -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('{0}'.format(quality.quality.name));
+ }
+
+ else {
+ this.$el.html('{0}'.format(quality.quality.name));
+ }
+
+ return this;
}
else {
if (!this.model.get('airDate')) {