diff --git a/couchpotato/static/scripts/page/wanted.js b/couchpotato/static/scripts/page/wanted.js index 3ba0f2bf..48d860fe 100644 --- a/couchpotato/static/scripts/page/wanted.js +++ b/couchpotato/static/scripts/page/wanted.js @@ -17,14 +17,6 @@ Page.Wanted = new Class({ }); $(self.wanted).inject(self.el); App.addEvent('library.update', self.wanted.update.bind(self.wanted)); - - // Snatched movies - self.snatched = new MovieList({ - 'status': 'snatched', - 'actions': SnatchedActions - }); - $(self.snatched).inject(self.el); - App.addEvent('library.update', self.snatched.update.bind(self.snatched)); } }