mirror of
https://github.com/hapifhir/org.hl7.fhir.core.git
synced 2025-02-10 14:54:46 +00:00
escape | in URLS for terminology service
This commit is contained in:
parent
89249219fd
commit
2f69a6734c
@ -778,7 +778,7 @@ public class Utilities {
|
|||||||
|
|
||||||
|
|
||||||
public static String encodeUri(String v) {
|
public static String encodeUri(String v) {
|
||||||
return v.replace(" ", "%20").replace("?", "%3F").replace("=", "%3D");
|
return v.replace(" ", "%20").replace("?", "%3F").replace("=", "%3D").replace("|", "%7C");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user