mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-08-03 22:05:55 +00:00
10 lines
460 B
Plaintext
10 lines
460 B
Plaintext
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
|