Browse Source

Fix show search not including quality profile

pull/3817/head
seedzero 11 years ago
committed by Dean Gardiner
parent
commit
ce80ac5a33
  1. 2
      couchpotato/core/media/show/_base/static/search.js

2
couchpotato/core/media/show/_base/static/search.js

@ -185,7 +185,7 @@ Block.Search.ShowItem = new Class({
self.category_select.show();
categories.each(function(category){
new Element('option', {
'value': category.data.id,
'value': category.data._id,
'text': category.data.label
}).inject(self.category_select);
});

Loading…
Cancel
Save