You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@devlake.apache.org by li...@apache.org on 2023/02/16 03:52:36 UTC

[incubator-devlake] branch main updated: fix(tapd): fix bug changelog order (#4395)

This is an automated email from the ASF dual-hosted git repository.

likyh pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git


The following commit(s) were added to refs/heads/main by this push:
     new d09fa6484 fix(tapd): fix bug changelog order (#4395)
d09fa6484 is described below

commit d09fa648455e6cb205ea852a7630dfe0cf8c89e3
Author: Warren Chen <yi...@merico.dev>
AuthorDate: Thu Feb 16 11:52:32 2023 +0800

    fix(tapd): fix bug changelog order (#4395)
---
 backend/plugins/tapd/tasks/bug_changelog_collector.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/backend/plugins/tapd/tasks/bug_changelog_collector.go b/backend/plugins/tapd/tasks/bug_changelog_collector.go
index 8f3745aaa..8c7fb5a22 100644
--- a/backend/plugins/tapd/tasks/bug_changelog_collector.go
+++ b/backend/plugins/tapd/tasks/bug_changelog_collector.go
@@ -49,7 +49,7 @@ func CollectBugChangelogs(taskCtx plugin.SubTaskContext) errors.Error {
 			query.Set("workspace_id", fmt.Sprintf("%v", data.Options.WorkspaceId))
 			query.Set("page", fmt.Sprintf("%v", reqData.Pager.Page))
 			query.Set("limit", fmt.Sprintf("%v", reqData.Pager.Size))
-			query.Set("order", "created%20desc")
+			query.Set("order", "created desc")
 			if data.CreatedDateAfter != nil {
 				query.Set("created",
 					fmt.Sprintf(">%s",