warren830 commented on issue #2550:
URL:
https://github.com/apache/incubator-devlake/issues/2550#issuecomment-1192625775
>
Hi @kyleliu1008
From @jinzhu2002 's suggestion, you can modify this file
`plugins/jira/apiv2models/user.go` to the below
```go
func (u *User) getAccountId() string {
if u == nil {
return ""
}
if u.AccountId != "" {
return u.AccountId
}
//add this code,run success,no test for jira cloud
if (u.AccountId == "") && (u.Name != "") {
return u.Name
}
return u.EmailAddress
}
```
we will fix this bug in the next version
--
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]