0
0
Fork 0
mirror of https://github.com/go-gitea/gitea synced 2024-06-16 09:28:41 +02:00

Fix panic for fixBrokenRepoUnits16961 (#30068) (#30100)

backport #30068
This commit is contained in:
yp05327 2024-03-26 19:20:03 +09:00 committed by GitHub
parent 8dccea02f2
commit 6d47b63be2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -216,6 +216,12 @@ func fixBrokenRepoUnit16961(repoUnit *repo_model.RepoUnit, bs []byte) (fixed boo
return false, nil
}
var cfg any
err = json.UnmarshalHandleDoubleEncode(bs, &cfg)
if err == nil {
return false, nil
}
switch repoUnit.Type {
case unit.TypeCode, unit.TypeReleases, unit.TypeWiki, unit.TypeProjects:
cfg := &repo_model.UnitConfig{}