Sharkey/src/web/app/common/scripts/check-for-update.js

15 lines
398 B
JavaScript
Raw Normal View History

2017-03-18 13:05:11 +02:00
import CONFIG from './config';
export default function() {
fetch(CONFIG.apiUrl + '/meta', {
method: 'POST'
}).then(res => {
res.json().then(meta => {
if (meta.version != VERSION) {
localStorage.setItem('should-refresh', 'true');
alert('Misskeyの新しいバージョンがあります。ページを再度読み込みすると更新が適用されます。');
}
});
});
};