Skip to content

Commit

Permalink
reference should return string
Browse files Browse the repository at this point in the history
  • Loading branch information
oliveregger committed Dec 27, 2019
1 parent e6d3dd6 commit 71f1abb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1933,7 +1933,7 @@ else if (v.size() != 1)
id = UUID.randomUUID().toString().toLowerCase();
b.setIdBase(id);
}
return new Reference().setReference(b.fhirType()+"/"+id);
return new StringType(b.fhirType()+"/"+id);
}
case DATEOP :
throw new Error("Rule \""+ruleId+"\": Transform "+tgt.getTransform().toCode()+" not supported yet");
Expand Down

0 comments on commit 71f1abb

Please sign in to comment.