Merge pull request #6440 from gufecoji/patch-1

Use https when downloading index file
This commit is contained in:
vshcherb 2019-01-15 15:35:11 +01:00 committed by GitHub
commit 9aeb9cff3e
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() {