mindlesscloud opened a new pull request, #3442:
URL: https://github.com/apache/incubator-devlake/pull/3442

   # Summary
   
   fix #3441 [Bug][jira] Different behavior of issue type mapping in v0.12 and 
v0.14
   In the version v0.12, the value of `issueType.Name` is assigned to 
`issue.Type`, only if `UntranslatedName` is not empty.
   ```go
   if issueType.UntranslatedName == "" {
       typeIdMapping[issueType.Id] = issueType.Name
   } else {
       typeIdMapping[issueType.Id] = issueType.UntranslatedName
   }
   ```
   However, in the version v0.14, the value of `issueType.Name` is assigned to 
`issue.Type`, no matter the value of `UntranslatedName`
   
   ### Does this close any open issues?
   Closes #3441 
   
   ### Screenshots
   Include any relevant screenshots here.
   
   ### Other Information
   Any other information that is important to this PR.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to