summaryrefslogtreecommitdiff
path: root/src/web/app/common/scripts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2017-03-22 13:38:18 +0900
committersyuilo <syuilotan@yahoo.co.jp>2017-03-22 14:13:14 +0900
commit5d7aa3491c351367b1254142b67f4051bbd6ec56 (patch)
tree9660f52629efe10e81d02033bd4e3e309e7380a7 /src/web/app/common/scripts
parentMerge pull request #312 from syuilo/greenkeeper/webpack-2.3.0 (diff)
downloadsharkey-5d7aa3491c351367b1254142b67f4051bbd6ec56.tar.gz
sharkey-5d7aa3491c351367b1254142b67f4051bbd6ec56.tar.bz2
sharkey-5d7aa3491c351367b1254142b67f4051bbd6ec56.zip
[Client] Improve message
Diffstat (limited to 'src/web/app/common/scripts')
-rw-r--r--src/web/app/common/scripts/check-for-update.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/app/common/scripts/check-for-update.js b/src/web/app/common/scripts/check-for-update.js
index 637e6a9fb8..9cbe482ed5 100644
--- a/src/web/app/common/scripts/check-for-update.js
+++ b/src/web/app/common/scripts/check-for-update.js
@@ -7,7 +7,7 @@ export default function() {
res.json().then(meta => {
if (meta.version != VERSION) {
localStorage.setItem('should-refresh', 'true');
- alert('Misskeyの新しいバージョンがあります。ページを再度読み込みすると更新が適用されます。');
+ alert(`Misskeyの新しいバージョンがあります(${meta.version}。現在を${VERSION}利用中)。\nページを再度読み込みすると更新が適用されます。`);
}
});
});