mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-16 16:02:33 +03:00
Fix Tags <pattern> stats
This commit is contained in:
parent
0cef32a407
commit
86aa3d1530
1 changed files with 5 additions and 1 deletions
|
@ -194,7 +194,11 @@ def main():
|
|||
logging.info("Processing update check modes...")
|
||||
ucms = {}
|
||||
for app in metaapps:
|
||||
checkmode = app['Update Check Mode'].split('/')[0]
|
||||
checkmode = app['Update Check Mode']
|
||||
if checkmode.startswith('RepoManifest/'):
|
||||
checkmode = checkmode[:12]
|
||||
if checkmode.startswith('Tags '):
|
||||
checkmode = checkmode[:4]
|
||||
if checkmode in ucms:
|
||||
ucms[checkmode] += 1;
|
||||
else:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue