forgejo/services/migrations
Giteabot 8b590de186
Fix migration panic due to an empty review comment diff (#28334) (#28362)
Backport #28334 by @lng2020

Fix #28328 
```
func (p *PullRequestComment) GetDiffHunk() string {
	if p == nil || p.DiffHunk == nil {
		return ""
	}
	return *p.DiffHunk
}
```
This function in the package `go-github` may return an empty diff. When
it's empty, the following code will panic because it access `ss[1]`

ec1feedbf5/services/migrations/gitea_uploader.go (L861-L867)

ec1feedbf5/modules/git/diff.go (L97-L101)

Co-authored-by: Nanguan Lin <70063547+lng2020@users.noreply.github.com>
2023-12-05 16:58:15 +08:00
..
codebase.go
codebase_test.go
common.go
dump.go Next round of db.DefaultContext refactor (#27089) 2023-09-16 14:39:12 +00:00
error.go
git.go
gitbucket.go
gitea_downloader.go Fix DownloadFunc when migrating releases (#27887) (#27890) 2023-11-03 08:29:30 +00:00
gitea_downloader_test.go
gitea_uploader.go Fix migration panic due to an empty review comment diff (#28334) (#28362) 2023-12-05 16:58:15 +08:00
gitea_uploader_test.go Next round of db.DefaultContext refactor (#27089) 2023-09-16 14:39:12 +00:00
github.go
github_test.go
gitlab.go Fix DownloadFunc when migrating releases (#27887) (#27890) 2023-11-03 08:29:30 +00:00
gitlab_test.go
gogs.go
gogs_test.go
http_client.go
main_test.go
migrate.go Next round of db.DefaultContext refactor (#27089) 2023-09-16 14:39:12 +00:00
migrate_test.go
onedev.go
onedev_test.go
restore.go
update.go Another round of db.DefaultContext refactor (#27103) (#27262) 2023-09-25 19:24:35 +02:00