We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b82cec3 commit e153341Copy full SHA for e153341
1 file changed
src/org/netbeans/modules/php/wordpress/WordPressPhpModuleExtender.java
@@ -297,6 +297,9 @@ private String getDownloadUrl() {
297
try {
298
versionCheckApi.parse();
299
downloadUrl = versionCheckApi.getDownload();
300
+ // follow a redirect url
301
+ // it seems that the redirect url is used https
302
+ downloadUrl = downloadUrl.replace("http://", "https://"); // NOI18N
303
} catch (IOException ex) {
304
downloadUrl = WP_DL_URL_DEFAULT;
305
}
0 commit comments