summaryrefslogtreecommitdiff
path: root/src/web/app/common/scripts/check-for-update.ts
blob: 99d8b5d05926192fc8250255421fe88fbacfd7f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import CONFIG from './config';

declare var VERSION: string;

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('%i18n:common.update-available%'.replace('{newer}', meta.version).replace('{current}', VERSION));
			}
		});
	});
}