mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-10-08 18:31:07 +03:00
fix bad caching of non-APK files in the repo
Silly mistake in 07ce948809
This commit is contained in:
parent
8147f92355
commit
d54ad41938
1 changed files with 2 additions and 1 deletions
|
@ -565,7 +565,8 @@ def scan_repo_files(apkcache, repodir, knownapks, use_date_from_file=False):
|
||||||
usecache = True
|
usecache = True
|
||||||
else:
|
else:
|
||||||
logging.debug("Ignoring stale cache data for " + name)
|
logging.debug("Ignoring stale cache data for " + name)
|
||||||
elif not usecache:
|
|
||||||
|
if not usecache:
|
||||||
logging.debug("Processing " + name)
|
logging.debug("Processing " + name)
|
||||||
repo_file = {}
|
repo_file = {}
|
||||||
# TODO rename apkname globally to something more generic
|
# TODO rename apkname globally to something more generic
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue