This is an automated email from the ASF dual-hosted git repository. lynwee pushed a commit to branch 10-cp in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git
commit 92806a60eb890203a81e3b34faa21b15ee6aaaa4 Author: d4x1 <[email protected]> AuthorDate: Fri Jul 12 11:44:51 2024 +0800 fix(jira): fix `reporter` field in issue change log items --- backend/plugins/jira/tasks/issue_changelog_convertor.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/plugins/jira/tasks/issue_changelog_convertor.go b/backend/plugins/jira/tasks/issue_changelog_convertor.go index 2d3e01a82..d4cdc7998 100644 --- a/backend/plugins/jira/tasks/issue_changelog_convertor.go +++ b/backend/plugins/jira/tasks/issue_changelog_convertor.go @@ -133,7 +133,7 @@ func ConvertIssueChangelogs(subtaskCtx plugin.SubTaskContext) errors.Error { CreatedDate: row.Created, } switch row.Field { - case "assignee": + case "assignee", "reporter": if row.FromValue != "" { changelog.OriginalFromValue = accountIdGen.Generate(connectionId, row.FromValue) }
