Fix undefined request from JS

This commit is contained in:
Zach Fox 2018-03-01 16:40:24 -08:00
parent d24cea2f07
commit c4e90c24eb

View file

@ -71,7 +71,7 @@ module.exports = {
}
}
httpRequest.open(options.method, options.uri, true);
httpRequest.send(options.body);
httpRequest.send(options.body || null);
}
};