link fix for large DB imports
This commit is contained in:
parent
faf1ab1c99
commit
d5c2d2ca64
@ -32,7 +32,10 @@ def getBundle(url: str, search: str):
|
|||||||
|
|
||||||
|
|
||||||
if url is not None:
|
if url is not None:
|
||||||
link = url + '?_format=json'
|
if '?' in url:
|
||||||
|
link = url + '&_format=json'
|
||||||
|
else:
|
||||||
|
link = url + '?_format=json'
|
||||||
else:
|
else:
|
||||||
link = fhir_server + search + '&_format=json'
|
link = fhir_server + search + '&_format=json'
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user