blob: 7f4c1cdee85016c8ae119fbfdd46870e404e0d67 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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の新しいバージョンがあります(${meta.version}。現在${VERSION}を利用中)。\nページを再度読み込みすると更新が適用されます。`);
}
});
});
};
|