Skip to content

Commit 310b7ae

Browse files
committed
get_json
1 parent a36f4ba commit 310b7ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/opengeodeweb_back/routes/blueprint_routes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ def create_point():
290290
)
291291
def texture_coordinates():
292292
utils_functions.validate_request(flask.request, texture_coordinates_json)
293-
data = geode_functions.load_data(flask.request.json.get("id"))
293+
data = geode_functions.load_data(flask.request.get_json().get("id"))
294294
texture_coordinates = data.texture_manager().texture_names()
295295
return flask.make_response({"texture_coordinates": texture_coordinates}, 200)
296296

0 commit comments

Comments
 (0)