Trim title before insert/update to database to match the size requirements of database (#32498)

Fix #32489
This commit is contained in:
Lunny Xiao 2024-11-13 23:19:14 -08:00 committed by GitHub
parent b4abb6deff
commit 98d9a71ffe
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 18 additions and 0 deletions

View file

@ -572,6 +572,7 @@ func NewPullRequest(ctx context.Context, repo *repo_model.Repository, issue *Iss
}
issue.Index = idx
issue.Title, _ = util.SplitStringAtByteN(issue.Title, 255)
if err = NewIssueWithIndex(ctx, issue.Poster, NewIssueOptions{
Repo: repo,