diff --git a/src/admin/github/GitHubForkStatusBadgeServer.tsx b/src/admin/github/GitHubForkStatusBadgeServer.tsx index a6cc6f3e..44bb8dc8 100644 --- a/src/admin/github/GitHubForkStatusBadgeServer.tsx +++ b/src/admin/github/GitHubForkStatusBadgeServer.tsx @@ -14,7 +14,16 @@ export default async function GitHubForkStatusBadgeServer() { label, title, isBehind, - } = await getGitHubMeta({ owner, repo }); + } = await getGitHubMeta({ owner, repo }) + .catch(() => { + console.log('Error getting GitHub meta', { owner, repo }); + return { + url: undefined, + label: undefined, + title: undefined, + isBehind: false, + }; + }); return (