From 0d2c0a5ba31fe2f105ec577fb479f086ecd1fc77 Mon Sep 17 00:00:00 2001 From: gorhill Date: Mon, 13 Mar 2017 10:07:26 -0400 Subject: [PATCH] fix #2450 --- src/js/storage.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/js/storage.js b/src/js/storage.js index d76c5c9bb..135bff652 100644 --- a/src/js/storage.js +++ b/src/js/storage.js @@ -180,8 +180,7 @@ var listKeys = []; if ( bin.selectedFilterLists ) { listKeys = bin.selectedFilterLists; - } - if ( bin.remoteBlacklists ) { + } else if ( bin.remoteBlacklists ) { var oldListKeys = µb.newListKeysFromOldData(bin.remoteBlacklists); if ( oldListKeys.sort().join() !== listKeys.sort().join() ) { listKeys = oldListKeys;