Skip to content

Commit

Permalink
fix(issue#210): bad id for addReference id incoming list (#223)
Browse files Browse the repository at this point in the history
  • Loading branch information
jufab authored Oct 24, 2023
1 parent 3664f0f commit d1f1d09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ func (l *listManager) ChangeAssignment(issueID string, userID string, sendTo str
return "", "", err
}

if err := l.store.AddReference(ir.ForeignUserID, receiverIssue.ID, InListKey, userID, issue.ID); err != nil {
if err := l.store.AddReference(sendTo, receiverIssue.ID, InListKey, userID, issue.ID); err != nil {
return "", "", err
}

Expand Down

0 comments on commit d1f1d09

Please sign in to comment.