Skip to content

Commit 987c7c8

Browse files
author
Peter Bengtsson
authored
w.author is null (#73)
Fixes #72
1 parent 4aeb3f7 commit 987c7c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/DeployPage.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ class DeployTable extends React.Component {
224224

225225
const usersByLogin = new Map();
226226
for (const commit of commits) {
227-
if (usersByLogin.has(commit.author.login)) {
227+
if (!commit.author || usersByLogin.has(commit.author.login)) {
228228
continue;
229229
}
230230
usersByLogin.set(commit.author.login, commit.author);

0 commit comments

Comments
 (0)