1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-11 23:23:27 +02:00

checkupdates: Avoid variable/string names as CV

This commit is contained in:
Daniel Martí 2015-09-11 23:17:46 -07:00
parent 7a79b000bf
commit 3638acddc4

View File

@ -433,6 +433,12 @@ def checkupdates_app(app, first=True):
vercode = str(eval(op))
logging.debug("Applied vercode operation: %s -> %s" % (oldvercode, vercode))
if version and any(version.startswith(s) for s in [
'${', # Gradle variable names
'@string/', # Strings we could not resolve
]):
version = "Unknown"
updating = False
if version is None:
logmsg = "...{0} : {1}".format(app['id'], msg)