[flatpak] info available for not installed applications

This commit is contained in:
Vinicius Moreira
2019-10-09 19:46:06 -03:00
parent 589264b096
commit f8128828d4
11 changed files with 89 additions and 17 deletions

View File

@@ -49,7 +49,7 @@ class InfoDialog(QDialog):
i18n_key = app['__app__'].model.get_type().lower() + '.info.' + attr.lower()
if isinstance(app[attr], list):
val = '\n'.join(['* ' + str(e.strip()) for e in app[attr] if e])
val = '\n'.join(['* ' + str(e).strip() for e in app[attr] if e])
else:
val = str(app[attr]).strip()