mirror of
https://github.com/hapifhir/org.hl7.fhir.core.git
synced 2025-03-09 14:31:17 +00:00
fix issue validating codes with + in them
This commit is contained in:
parent
56b0ad11f3
commit
fd54cee65b
@ -829,7 +829,7 @@ public class Utilities {
|
||||
|
||||
|
||||
public static String encodeUri(String v) {
|
||||
return v.replace(" ", "%20").replace("?", "%3F").replace("=", "%3D").replace("|", "%7C");
|
||||
return v.replace(" ", "%20").replace("?", "%3F").replace("=", "%3D").replace("|", "%7C").replace("+", "%2B");
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user