Browse Source

Don't use cached in_wanted when re-adding movie

pull/908/head
Ruud 13 years ago
parent
commit
a3b3b9c218
  1. 2
      couchpotato/core/plugins/movie/static/search.js

2
couchpotato/core/plugins/movie/static/search.js

@ -339,7 +339,7 @@ Block.Search.Item = new Class({
'height': null,
'width': null
}) : null,
self.info.in_wanted ? new Element('span.in_wanted', {
self.info.in_wanted && self.info.in_wanted.profile ? new Element('span.in_wanted', {
'text': 'Already in wanted list: ' + self.info.in_wanted.profile.label
}) : (in_library ? new Element('span.in_library', {
'text': 'Already in library: ' + in_library.join(', ')

Loading…
Cancel
Save