Skip to content

Commit

Permalink
Fixed defect D-09380
Browse files Browse the repository at this point in the history
  • Loading branch information
acenolaza committed May 15, 2015
1 parent dee0dfd commit 79afb94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions VersionOne.ServiceHost.JiraServices/JiraIssueReaderUpdater.cs
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,8 @@ private MappingInfo ResolveVersionOneProjectMapping(string jiraProject) {
}

// TODO check if not found mapping causes the method to return null
private MappingInfo ResolveVersionOnePriorityMapping(string jiraPriorityId) {
return configuration.PriorityMappings.FirstOrDefault(x => x.Key.Id.Equals(jiraPriorityId)).Value;
private MappingInfo ResolveVersionOnePriorityMapping(string jiraPriority) {
return configuration.PriorityMappings.FirstOrDefault(x => x.Key.Name.Equals(jiraPriority)).Value;
}

private bool IsActionAvailable(string workflowId, string issueId) {
Expand Down

0 comments on commit 79afb94

Please sign in to comment.