Merge pull request #12542 from zfox23/RC65_fixJsRequest

RC65: Fix undefined request from JS
This commit is contained in:
John Conklin II 2018-03-02 12:34:14 -08:00 committed by GitHub
commit be30d8d4ec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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