remove tab cloak from save files

This commit is contained in:
Sky 2023-07-23 14:47:28 -04:00
parent c1d63f31c4
commit b90bd2cc4c

View File

@ -2,7 +2,7 @@
function getMainSave() { function getMainSave() {
var mainSave = {}; var mainSave = {};
// List of items in localStorage that should not be saved // List of items in localStorage that should not be saved
var localStorageDontSave = ['tab']; var localStorageDontSave = ['tabicon', 'tabname'];
// Convert localStorage to an array of key-value pairs and remove the items that should not be saved // Convert localStorage to an array of key-value pairs and remove the items that should not be saved
localStorageSave = Object.entries(localStorage); localStorageSave = Object.entries(localStorage);