mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-14 23:12:46 +03:00
More detail for package ID mismatches
This commit is contained in:
parent
d1cf1c37b4
commit
38f975dd49
1 changed files with 2 additions and 1 deletions
|
@ -211,7 +211,8 @@ def check_repomanifest(app, branch=None):
|
|||
if not package:
|
||||
return (None, "Couldn't find package ID")
|
||||
if package != appid:
|
||||
return (None, "Package ID mismatch")
|
||||
return (None, "Package ID mismatch - expected {0}, got {1}"
|
||||
.format(appid, package))
|
||||
if not version:
|
||||
return (None, "Couldn't find latest version name")
|
||||
if not vercode:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue