mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-05 08:55:56 +02:00
Initial commit 🍀
This commit is contained in:
9
src/web/app/common/scripts/check-for-update.ls
Normal file
9
src/web/app/common/scripts/check-for-update.ls
Normal file
@@ -0,0 +1,9 @@
|
||||
module.exports = ->
|
||||
fetch \/api:meta
|
||||
.then (res) ~>
|
||||
meta <~ res.json!.then
|
||||
if meta.commit.hash != VERSION
|
||||
if window.confirm '新しいMisskeyのバージョンがあります。更新しますか?\r\n(このメッセージが繰り返し表示される場合は、サーバーにデータがまだ届いていない可能性があるので、少し時間を置いてから再度お試しください)'
|
||||
location.reload true
|
||||
.catch ~>
|
||||
# ignore
|
||||
Reference in New Issue
Block a user