From 9dc1506311c24ff00789d6e8a23d55c9bc358886 Mon Sep 17 00:00:00 2001 From: yp05327 <576951401@qq.com> Date: Tue, 26 Mar 2024 07:18:29 +0000 Subject: [PATCH] fix --- modules/doctor/fix16961.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/doctor/fix16961.go b/modules/doctor/fix16961.go index 562c78dd76597..3b1f34c907126 100644 --- a/modules/doctor/fix16961.go +++ b/modules/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{}