aboutsummaryrefslogtreecommitdiffstats
path: root/routers/api
diff options
context:
space:
mode:
authorAndrew Tomaka <atomaka@atomaka.com>2023-03-19 02:29:14 -0400
committerGitHub <noreply@github.com>2023-03-19 02:29:14 -0400
commit0206882e8a9ee226092ffd0d4d39de494d2f9b80 (patch)
treefc339262b48e02e95f1ffb11258baa91d063a937 /routers/api
parent30668e0047d684feec83b0e316c001c6e2332986 (diff)
downloadgitea-0206882e8a9ee226092ffd0d4d39de494d2f9b80.tar.gz
gitea-0206882e8a9ee226092ffd0d4d39de494d2f9b80.zip
Match api migration behavior to web behavior (#23552)
When attempting to migrate a repository via the API endpoint comments are always included. This can create a problem if your source repository has issues or pull requests but you do not want to import them into Gitea that displays as something like: > Error 500: We were unable to perform the request due to server-side problems. 'comment references non existent IssueIndex 4 There are only two ways to resolve this: 1. Migrate using the web interface 2. Migrate using the API including at issues or pull requests. This PR matches the behavior of the API migration router to the web migration router. Co-authored-by: Lauris BH <lauris@nix.lv> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Diffstat (limited to 'routers/api')
-rw-r--r--routers/api/v1/repo/migrate.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/api/v1/repo/migrate.go b/routers/api/v1/repo/migrate.go
index 09e857b5fc..efce39e520 100644
--- a/routers/api/v1/repo/migrate.go
+++ b/routers/api/v1/repo/migrate.go
@@ -154,7 +154,7 @@ func Migrate(ctx *context.APIContext) {
Issues: form.Issues,
Milestones: form.Milestones,
Labels: form.Labels,
- Comments: true,
+ Comments: form.Issues || form.PullRequests,
PullRequests: form.PullRequests,
Releases: form.Releases,
GitServiceType: gitServiceType,