Skip to content

Commit

Permalink
fix: update ungh link
Browse files Browse the repository at this point in the history
closes #63
  • Loading branch information
dnldsht authored and pi0 committed Mar 1, 2023
1 parent 0bb28ab commit a5ab510
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/markdown.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export async function generateMarkDown(
[..._authors.keys()].map(async (authorName) => {
const meta = _authors.get(authorName);
for (const email of meta.email) {
const { user } = await fetch(`https://ungh.unjs.io/user/find/${email}`)
const { user } = await fetch(`https://ungh.cc/users/find/${email}`)
.then((r) => r.json())
.catch(() => ({ user: null }));
if (user) {
Expand Down

0 comments on commit a5ab510

Please sign in to comment.