mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-10-09 02:41:06 +03:00
Fix sha256 sums not appearing in the index
This commit is contained in:
parent
9137a611e0
commit
96d91342ee
1 changed files with 1 additions and 1 deletions
|
@ -539,7 +539,7 @@ def make_index(apps, apks, repodir, archive, categories):
|
|||
addElement('apkname', apk['apkname'], doc, apkel)
|
||||
if 'srcname' in apk:
|
||||
addElement('srcname', apk['srcname'], doc, apkel)
|
||||
for hash_type in ('sha256'):
|
||||
for hash_type in ['sha256']:
|
||||
if not hash_type in apk:
|
||||
continue
|
||||
hashel = doc.createElement("hash")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue