From b12e158a807587e7fd6460f73c6ccfa78e5dcbd6 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 bfba9d2ea..5d232acb4 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;