mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-13 02:30:11 +01:00
Find out srclib repo type for stats
This commit is contained in:
parent
f40ec0eaaa
commit
bb867e1b6f
@ -163,7 +163,10 @@ def main():
|
||||
if len(app['Repo Type']) == 0:
|
||||
rtype = 'none'
|
||||
else:
|
||||
rtype = app['Repo Type']
|
||||
if app['Repo Type'] == 'srclib':
|
||||
rtype = common.getsrclibvcs(app['Repo'])
|
||||
else:
|
||||
rtype = app['Repo Type']
|
||||
if rtype in repotypes:
|
||||
repotypes[rtype] += 1;
|
||||
else:
|
||||
|
Loading…
Reference in New Issue
Block a user