Skip to content

Commit daa5e85

Browse files
committed
more relaxing of validation
Signed-off-by: Neil South <[email protected]>
1 parent fecb72f commit daa5e85

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/InformaticsGateway/Services/HealthLevel7/MllpClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ private bool CreateMessage(int startIndex, int endIndex, ref string data, out Me
218218
var text = data.Substring(messageStartIndex, endIndex - messageStartIndex);
219219
_logger.Hl7GenerateMessage(text.Length, text);
220220
message = new Message(text);
221-
message.ParseMessage(false);
221+
message.ParseMessage(true);
222222
data = data.Length > endIndex ? data.Substring(messageEndIndex) : string.Empty;
223223
return true;
224224
}

0 commit comments

Comments
 (0)