mirror of
https://github.com/koala73/worldmonitor.git
synced 2026-04-26 01:24:59 +02:00
13 lines
344 B
JavaScript
13 lines
344 B
JavaScript
const RELEASES_URL = 'https://api.github.com/repos/koala73/worldmonitor/releases/latest';
|
|
|
|
export async function fetchLatestRelease(userAgent) {
|
|
const res = await fetch(RELEASES_URL, {
|
|
headers: {
|
|
'Accept': 'application/vnd.github+json',
|
|
'User-Agent': userAgent,
|
|
},
|
|
});
|
|
if (!res.ok) return null;
|
|
return res.json();
|
|
}
|