Skip to content

Commit

Permalink
fix stated path for error
Browse files Browse the repository at this point in the history
  • Loading branch information
Grahame Grieve committed Dec 28, 2023
1 parent 32e063e commit caed92f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion library/ftx/fhir_valuesets.pas
Original file line number Diff line number Diff line change
Expand Up @@ -1860,7 +1860,9 @@ function TValueSetChecker.check(issuePath : String; code: TFhirCodeableConceptW;
if (message <> '') then
begin
// msg(message); we just add this as an issue, but don't put it in the base message
op.addIssue(isInformation, cause, path, message, oicInvalidCode);
if mode <> vcmCode then
p := path + '.code';
op.addIssue(isInformation, cause, p, message, oicInvalidCode);
message := '';
end;
vcc.removeCoding(prov.systemUri(nil), prov.version(nil), c.code);
Expand Down

0 comments on commit caed92f

Please sign in to comment.