Skip to content
Snippets Groups Projects
Commit 8a40026c authored by syuilo's avatar syuilo
Browse files

fix(client): improve error handling

parent 974250da
No related branches found
No related tags found
No related merge requests found
......@@ -45,8 +45,6 @@
localStorage.setItem('lang', lang);
localStorage.setItem('locale', await res.text());
localStorage.setItem('localeVersion', v);
} else if (localeOutdated) {
// nop
} else {
await checkUpdate();
renderError('LOCALE_FETCH_FAILED');
......
......@@ -42,10 +42,6 @@ import { getAccountFromId } from '@/scripts/get-account-from-id';
console.info(`Misskey v${version}`);
// boot.jsのやつを解除
window.onerror = null;
window.onunhandledrejection = null;
if (_DEV_) {
console.warn('Development mode!!!');
......@@ -224,6 +220,10 @@ const rootEl = document.createElement('div');
document.body.appendChild(rootEl);
app.mount(rootEl);
// boot.jsのやつを解除
window.onerror = null;
window.onunhandledrejection = null;
reactionPicker.init();
if (splash) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment