From b1860b244f82da2015138cea2ba9565bb5b0ba3e Mon Sep 17 00:00:00 2001 From: syuilo Date: Mon, 8 May 2017 23:35:53 +0900 Subject: [PATCH] Better blue screen --- src/web/app/boot.js | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/src/web/app/boot.js b/src/web/app/boot.js index 426c7be40..97802f89f 100644 --- a/src/web/app/boot.js +++ b/src/web/app/boot.js @@ -120,7 +120,7 @@ function fetchme(token, cb) { } // Fetch user - fetch(CONFIG.apiUrl + '/i', { + fetch(`${CONFIG.apiUrl}/i`, { method: 'POST', body: JSON.stringify({ i: token @@ -159,6 +159,17 @@ function fetchme(token, cb) { function panic(e) { console.error(e); - document.body.innerHTML = '

致命的な問題が発生しました。

'; + document.body.innerHTML = + `
+

:( 致命的な問題が発生しました。

+

お使いのブラウザ(またはOS)のバージョンを更新すると解決する可能性があります。

+
+

エラーコード: ${e.toString()}

+

ブラウザ バージョン: ${navigator.userAgent}

+

クライアント バージョン: ${VERSION}

+
+

問題が解決しない場合は上記の情報をお書き添えの上 syuilotan@yahoo.co.jp までご連絡ください。

+

Thank you for using Misskey.

+
`; // TODO: Report the bug }