1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-10-03 17:50:11 +02:00

Merge branch 'lint_tag_UpdateCheckData' into 'master'

[lint] only check for https with UpdateCheckMode HTTP

See merge request fdroid/fdroidserver!944
This commit is contained in:
Jochen Sprickerhof 2021-06-07 17:07:43 +00:00
commit 7ddcbb3e80

View File

@ -217,7 +217,7 @@ def get_lastbuild(builds):
def check_update_check_data_url(app):
"""UpdateCheckData must have a valid HTTPS URL to protect checkupdates runs
"""
if app.UpdateCheckData:
if app.UpdateCheckData and app.UpdateCheckMode == 'HTTP':
urlcode, codeex, urlver, verex = app.UpdateCheckData.split('|')
for url in (urlcode, urlver):
if url != '.':