Oracle now uses https, update body parser accordingly.

stable
Daniel Scalzi 2018-11-25 22:18:59 -05:00
parent 9d5f708dfc
commit d9858958c9
No known key found for this signature in database
GPG Key ID: 5CA2F145B63535F9
1 changed files with 2 additions and 2 deletions

View File

@ -394,8 +394,8 @@ class AssetGuard extends EventEmitter {
*/
static _latestJREOracle(){
const url = 'http://www.oracle.com/technetwork/java/javase/downloads/jre8-downloads-2133155.html'
const regex = /http:\/\/.+?(?=\/java)\/java\/jdk\/([0-9]+u[0-9]+)-(b[0-9]+)\/([a-f0-9]{32})?\/jre-\1/
const url = 'https://www.oracle.com/technetwork/java/javase/downloads/jre8-downloads-2133155.html'
const regex = /https:\/\/.+?(?=\/java)\/java\/jdk\/([0-9]+u[0-9]+)-(b[0-9]+)\/([a-f0-9]{32})?\/jre-\1/
return new Promise((resolve, reject) => {
request(url, (err, resp, body) => {