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