We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6dfd68e commit a658787Copy full SHA for a658787
scripts/_utils.ts
@@ -121,6 +121,9 @@ export async function getContributors() {
121
if (emails.has(commit.author.email) || commit.author.name === 'renovate[bot]') {
122
continue
123
}
124
+ if (!commit?.shortHash) {
125
+ continue
126
+ }
127
const { author } = await $fetch<{ author: { login: string, email: string } }>(`https://api.github.com/repos/nuxt/image/commits/${commit.shortHash}`, {
128
headers: {
129
'User-Agent': 'nuxt/image',
0 commit comments