1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00

Downloaded column should now use the correct quality name. Fixes #210.

This commit is contained in:
Leonardo Galli 2017-01-13 18:13:39 +01:00
parent 4038ce18c3
commit e76c160afe

View File

@ -18,14 +18,8 @@ module.exports = Backgrid.Cell.extend({
this.$el.empty();
if (this.model.get("movieFile")) {
var profileId = this.model.get("movieFile").quality.quality.id;
var profile = _.findWhere(ProfileCollection.models, { id : profileId });
if (profile) {
this.$el.html(profile.get('name'));
} else {
this.$el.html(this.model.get("movieFile").quality.quality.name);
}
}