1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2024-12-25 09:21:57 +00: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);
}
}