mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 06:50:29 +03:00
UpdateCheckIgnore: Exception if version not matched
Ignoreversions were checked also if version did not match which raised the exception The 'version check' runs in some unexpected situations like just to find directories where to find the AutoName.
This commit is contained in:
parent
1ccd839a77
commit
7c4bed0558
2 changed files with 7 additions and 3 deletions
|
|
@ -1508,7 +1508,7 @@ def parse_androidmanifests(paths, app):
|
|||
|
||||
if vercode is not None \
|
||||
and (max_vercode is None or vercode > max_vercode):
|
||||
if not ignoresearch or not ignoresearch(version):
|
||||
if version and (not ignoresearch or not ignoresearch(version)):
|
||||
if version is not None:
|
||||
max_version = version
|
||||
if vercode is not None:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue