From 144da12be857a5e007031de9a89b32e3732d5d84 Mon Sep 17 00:00:00 2001 From: Ruud Date: Sun, 29 Apr 2012 17:31:43 +0200 Subject: [PATCH] Reset wanted list before update. fixes #172 --- couchpotato/core/plugins/movie/static/list.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/couchpotato/core/plugins/movie/static/list.js b/couchpotato/core/plugins/movie/static/list.js index d70db1f5..c3c177af 100644 --- a/couchpotato/core/plugins/movie/static/list.js +++ b/couchpotato/core/plugins/movie/static/list.js @@ -381,6 +381,8 @@ var MovieList = new Class({ update: function(){ var self = this; + self.reset(); + self.movie_list.empty(); self.getMovies(); },