Catch failure to restore adv search state

Shouldn't throw any errors if this fails to be restored from local
storage for any reason. It's purely a nice-to-have feature.
pull/835/head
Ben Busby 2 years ago
parent cab1105169
commit a6a97aa9c7
No known key found for this signature in database
GPG Key ID: B9B7231E01D924A1

@ -25,7 +25,12 @@ document.addEventListener("DOMContentLoaded", () => {
localStorage.advSearchToggled = on;
}
toggleAdvancedSearch(JSON.parse(localStorage.advSearchToggled));
try {
toggleAdvancedSearch(JSON.parse(localStorage.advSearchToggled));
} catch (error) {
console.warn("Did not recover advanced search toggle state");
}
advSearchToggle.onclick = () => {
toggleAdvancedSearch(advSearchToggle.checked);
}

Loading…
Cancel
Save