Skip to content

Commit 42481b3

Browse files
authored
Merge pull request #13 from hansu/1-add-author-filter
fix filter only for exact name match
2 parents f21f4fa + 76c9322 commit 42481b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dataSource.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1550,7 +1550,7 @@ export class DataSource extends Disposable {
15501550
}
15511551
if(authors !== null) {
15521552
for (let i = 0; i < authors.length; i++) {
1553-
args.push(`--author=${authors[i]}`);
1553+
args.push(`--author=${authors[i]} <`);
15541554
}
15551555
}
15561556
if (branches !== null) {

0 commit comments

Comments
 (0)