Skip to content

Commit ba31d2d

Browse files
committed
fix(projects): fix resolve user
1 parent c7acb5e commit ba31d2d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ export async function getChangelogMarkdown(options?: Partial<ChangelogOption>, s
1414
const opts = await createOptions(options);
1515

1616
const gitCommits = await getGitCommits(opts.from, opts.to);
17-
const { commits, contributors } = await getGitCommitsAndResolvedAuthors(gitCommits, opts.github);
17+
const resolvedLogins = new Map<string, string>();
18+
const { commits, contributors } = await getGitCommitsAndResolvedAuthors(gitCommits, opts.github, resolvedLogins);
1819

1920
const markdown = generateMarkdown({ commits, options: opts, showTitle, contributors });
2021

0 commit comments

Comments
 (0)