I\'ve been working in a web application and I\'m using local storage. But for some Firefox users I notice that they\'re having the following error:
NS
Clearing everything via the Firefox preferences may not fully clear the local storage where the corrupted SQLite file resides.
At this point, you have two options:
localStorage.clear()
sessionStorage.clear()
Steps for macOS users:
cd /Users/myusername/Library/Application Support/Firefox/Profiles/.....default/rm webappsstore.sqliteVerify no other files corrupted using this script from TheConstructor:
for i in $(find . -name '*.sqlite'); do echo "$i"; echo "PRAGMA integrity_check;" | sqlite3 -bail "$i"; done