mirror of
https://github.com/trufflesecurity/trufflehog.git
synced 2024-11-10 15:14:38 +00:00
chore(github): add a newline between titles and bodies (#2124)
This commit is contained in:
parent
1f502fd42c
commit
024aa056b9
1 changed files with 2 additions and 2 deletions
|
@ -1356,7 +1356,7 @@ func (s *Source) chunkIssues(ctx context.Context, repoInfo repoInfo, issues []*g
|
|||
},
|
||||
},
|
||||
},
|
||||
Data: []byte(sanitizer.UTF8(issue.GetTitle() + issue.GetBody())),
|
||||
Data: []byte(sanitizer.UTF8(issue.GetTitle() + "\n" + issue.GetBody())),
|
||||
Verify: s.verify,
|
||||
}
|
||||
|
||||
|
@ -1455,7 +1455,7 @@ func (s *Source) chunkPullRequests(ctx context.Context, repoInfo repoInfo, prs [
|
|||
},
|
||||
},
|
||||
},
|
||||
Data: []byte(sanitizer.UTF8(pr.GetTitle() + pr.GetBody())),
|
||||
Data: []byte(sanitizer.UTF8(pr.GetTitle() + "\n" + pr.GetBody())),
|
||||
Verify: s.verify,
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue