dist files for v1.4.2 built

This commit is contained in:
Kantine Wrapper
2026-02-23 08:24:51 +01:00
parent f5b3635773
commit 136fe7d355
8 changed files with 43 additions and 24 deletions

View File

@@ -1773,7 +1773,12 @@
: `${GITHUB_API}/releases?per_page=20`;
const resp = await fetch(endpoint, { headers: githubHeaders() });
if (!resp.ok) throw new Error(`GitHub API ${resp.status}`);
if (!resp.ok) {
if (resp.status === 403) {
throw new Error('API Rate Limit erreicht (403). Bitte später erneut versuchen.');
}
throw new Error(`GitHub API ${resp.status}`);
}
const data = await resp.json();
// Normalize to common format: { tag, name, url, body }