1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-11-13 02:30:11 +01:00
This commit is contained in:
Ciaran Gultnieks 2014-03-16 22:34:13 +00:00
parent 6b309aff41
commit 93987eac17

View File

@ -646,7 +646,10 @@ def fetch_real_name(app_dir, flavour):
if matches:
stringname = matches.group(1)
logging.debug("fetch_real_name: using string " + stringname)
return retrieve_string(app_dir, stringname).strip()
result = retrieve_string(app_dir, stringname)
if result:
result = result.strip()
return result
return None
# Retrieve the version name