Skip to content

Commit 0f4c591

Browse files
committed
Match authors exactly in the contributors view
1 parent 3f70133 commit 0f4c591

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/views/nodes/contributorNode.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export class ContributorNode extends ViewNode<RepositoriesView> implements Pagea
2525
async getChildren(): Promise<ViewNode[]> {
2626
const log = await Container.git.getLog(this.uri.repoPath!, {
2727
maxCount: this.maxCount !== undefined ? this.maxCount : this.view.config.defaultItemLimit,
28-
authors: [this.contributor.name]
28+
authors: [`^${this.contributor.name} <${this.contributor.email}>$`]
2929
});
3030
if (log === undefined) return [new MessageNode(this.view, this, 'No commits could be found.')];
3131

0 commit comments

Comments
 (0)