Commit b9cfe595 authored by 不如归去's avatar 不如归去 Committed by GitHub

Fix

parent 524bec53
......@@ -374,7 +374,7 @@ let endUserResponse = function(req, res) {
let json = '';
req.on('data', (data) => json += data);
req.on('end', function () {
let result = finishUser(json);
let result = finishUser(JSON.parse(json));
res.statusCode = 200;
res.end('ok');
})
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment