aboutsummaryrefslogtreecommitdiff
path: root/gn3/api
diff options
context:
space:
mode:
Diffstat (limited to 'gn3/api')
-rw-r--r--gn3/api/metadata_api/wiki.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/gn3/api/metadata_api/wiki.py b/gn3/api/metadata_api/wiki.py
index c84578a..cc5fc22 100644
--- a/gn3/api/metadata_api/wiki.py
+++ b/gn3/api/metadata_api/wiki.py
@@ -75,13 +75,13 @@ def get_wiki_entries(symbol: str):
status_code = 200
response = get_wiki_entries_by_symbol(
symbol=symbol,
- sparql_uri=current_app.config.get("SPARQL_ENDPOINT"))
+ sparql_uri=current_app.config["SPARQL_ENDPOINT"])
data = response.get("data")
if not data:
data = {}
status_code = 404
if content_type == "application/ld+json":
- response = make_response(response)
- response.headers["Content-Type"] = "application/ld+json"
- return response, status_code
+ payload = make_response(response)
+ payload.headers["Content-Type"] = "application/ld+json"
+ return payload, status_code
return jsonify(data), status_code