mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-14 23:12:46 +03:00
Don't do autoname when update checking is disabled
Much of that stuff has checking set to None because the source repo is not accessible. Attempting to pull it is just filling logs with exception messages which are likely to be masking real errors.
This commit is contained in:
parent
06d75f8473
commit
0b31a7a37c
1 changed files with 1 additions and 1 deletions
|
@ -398,7 +398,7 @@ def main():
|
|||
writeit = True
|
||||
|
||||
# Do the Auto Name thing as well as finding the CV real name
|
||||
if len(app["Repo Type"]) > 0:
|
||||
if len(app["Repo Type"]) > 0 and mode != 'None':
|
||||
|
||||
try:
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue