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