More error handling and remove some logging

pull/1/head
I Made Setia Baruna 2021-01-10 03:05:52 +08:00
parent 78099e5407
commit cbf1ae632d
2 changed files with 6 additions and 1 deletions

View File

@ -68,6 +68,7 @@
}
} catch (err) {
console.error(err);
handleError();
}
}
@ -116,6 +117,7 @@
}
} catch (err) {
console.error(err);
handleError();
}
}
@ -145,6 +147,7 @@
}
} catch (err) {
console.error(err);
handleError();
}
}
@ -170,6 +173,7 @@
console.log(result);
} catch (err) {
console.error(err);
handleError();
}
}
@ -186,6 +190,7 @@
return result;
} catch (err) {
console.error(err);
handleError();
}
}
@ -203,6 +208,7 @@
});
} catch (err) {
console.error(err);
handleError();
}
}

View File

@ -30,7 +30,6 @@
unsubscribe = todos.subscribe((val) => {
if (firstLoad) return;
console.log('todos changed', val);
updateSave('todos', JSON.stringify(val));
});