We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7053b5e commit 2e5e96eCopy full SHA for 2e5e96e
backend/src/serverless/integrations/services/integrations/githubIntegrationService.ts
@@ -1200,7 +1200,7 @@ export class GithubIntegrationService extends IntegrationServiceBase {
1200
1201
break
1202
case GithubPullRequestEvents.REVIEW:
1203
- if (record.author.login && record.submittedAt) {
+ if (record?.author?.login && record?.submittedAt) {
1204
const member = await GithubIntegrationService.parseMember(record.author, context)
1205
out.push({
1206
username: member.username[PlatformType.GITHUB].username,
0 commit comments