yp05327 8 months ago committed by GitHub
parent bcb151c220
commit 08aec2c20a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 6
      services/doctor/fix16961.go

@ -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{}

Loading…
Cancel
Save