Use https when downloading index file

download.osmand.net is accessible via https. Please consider using https for index file downloading.
This commit is contained in:
gufecoji 2019-01-12 13:58:34 +00:00 committed by GitHub
parent 6aa67b2914
commit 7f12802f27
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -167,7 +167,7 @@ public class OsmAndAppCustomization {
}
public String getIndexesUrl() {
return "http://" + IndexConstants.INDEX_DOWNLOAD_DOMAIN + "/get_indexes?gzip&" + Version.getVersionAsURLParam(app);
return "https://" + IndexConstants.INDEX_DOWNLOAD_DOMAIN + "/get_indexes?gzip&" + Version.getVersionAsURLParam(app);
}
public boolean showDownloadExtraActions() {