diff --git a/couchpotato/core/plugins/movie/static/list.js b/couchpotato/core/plugins/movie/static/list.js index 7e606abf..28195543 100644 --- a/couchpotato/core/plugins/movie/static/list.js +++ b/couchpotato/core/plugins/movie/static/list.js @@ -133,7 +133,7 @@ var MovieList = new Class({ self.empty_message = null; } - if(count == 0 && !self.empty_message){ + if(self.total_movies && count == 0 && !self.empty_message){ var message = (self.filter.search ? 'for "'+self.filter.search+'"' : '') + (self.filter.starts_with ? ' in '+self.filter.starts_with+'' : '');