mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-26 23:46:44 -06:00
12 lines
486 B
JavaScript
12 lines
486 B
JavaScript
|
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);
|
|||
|
}
|
|||
|
}
|
|||
|
});
|
|||
|
});
|
|||
|
};
|