Skip to content

Commit

Permalink
do it for miccah.
Browse files Browse the repository at this point in the history
  • Loading branch information
ahrav committed Aug 17, 2023
1 parent d52721b commit fe4b151
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/sources/github/github.go
Original file line number Diff line number Diff line change
Expand Up @@ -1064,11 +1064,11 @@ func (s *Source) processRepoComments(ctx context.Context, repoPath string, trimm

}

if !s.includePRComments {
return nil
if s.includePRComments {
return s.processPRComments(ctx, repoInfo, chunksChan)
}
return nil

return s.processPRComments(ctx, repoInfo, chunksChan)
}

func (s *Source) processIssueComments(ctx context.Context, info repoInfo, chunksChan chan *sources.Chunk) error {
Expand Down

0 comments on commit fe4b151

Please sign in to comment.