From e694276a8d0f6a813c22ce7f4bf137e7bc008d09 Mon Sep 17 00:00:00 2001 From: Ruud Date: Mon, 18 Mar 2013 22:02:47 +0100 Subject: [PATCH] Save view to different cookie so people don't have to reset. --- couchpotato/core/plugins/movie/static/list.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/couchpotato/core/plugins/movie/static/list.js b/couchpotato/core/plugins/movie/static/list.js index 5ac210ed..3d5545e3 100644 --- a/couchpotato/core/plugins/movie/static/list.js +++ b/couchpotato/core/plugins/movie/static/list.js @@ -429,12 +429,12 @@ var MovieList = new Class({ .addClass(new_view+'_list') self.current_view = new_view; - Cookie.write(self.options.identifier+'_view', new_view, {duration: 1000}); + Cookie.write(self.options.identifier+'_view2', new_view, {duration: 1000}); }, getSavedView: function(){ var self = this; - return Cookie.read(self.options.identifier+'_view'); + return Cookie.read(self.options.identifier+'_view2'); }, search: function(){