Add missing response to PUT handler

This commit is contained in:
Manuel Thalmann 2022-12-14 20:05:10 +01:00
parent bc16d9607f
commit 63a56e5b11
No known key found for this signature in database
GPG key ID: 5FD9AD3CCDDBD27B

View file

@ -97,6 +97,7 @@ app.put(
if (id in data) if (id in data)
{ {
data[id] = request.body; data[id] = request.body;
response.send(data[id]);
} }
else else
{ {