mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-14 15:02:51 +03: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:
commit
7ddcbb3e80
1 changed files with 1 additions and 1 deletions
|
@ -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 != '.':
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue