Browse Source

Allow empty quality

pull/3423/head
Ruud 11 years ago
parent
commit
ba9c975335
  1. 5
      couchpotato/core/plugins/quality/static/quality.js

5
couchpotato/core/plugins/quality/static/quality.js

@ -29,9 +29,14 @@ var QualityBase = new Class({
},
getQuality: function(identifier){
try {
return this.qualities.filter(function(q){
return q.identifier == identifier;
}).pick();
}
catch(e){}
return {}
},
addSettings: function(){

Loading…
Cancel
Save