Fix one-off migration

pull/149/head
Philipp Heckel 2022-03-11 15:32:24 -05:00
parent 09336fa1e4
commit 70538783d8
1 changed files with 1 additions and 3 deletions

View File

@ -78,9 +78,7 @@ export const useLocalStorageMigration = () => {
}
const topicsStr = localStorage.getItem("topics");
if (topicsStr) {
const topics = topicsStr
.split(",")
.filter(topic => topic !== "");
const topics = JSON.parse(topicsStr).filter(topic => topic !== "");
if (topics.length > 0) {
(async () => {
for (const topic of topics) {