mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-04 22:40:29 +03:00
[lint] only check for https with UpdateCheckMode HTTP
With 133b626b UpdateCheckMode is now also allowed with Tags but it uses
the files from the local repo.
This commit is contained in:
parent
b6233fa2ce
commit
49248ba3a9
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