appimage refactoring | limiting name, desc and publisher in the apps table

This commit is contained in:
Vinicius Moreira
2019-10-09 19:00:07 -03:00
parent 69dd9b9396
commit 589264b096
3 changed files with 34 additions and 8 deletions

View File

@@ -112,7 +112,7 @@ class AppImageManager(SoftwareManager):
if con:
try:
cursor = con.cursor()
cursor.execute(query.FIND_APPS_LATEST_VERSIONS.format(','.join(names)))
cursor.execute(query.FIND_APPS_BY_NAME.format(','.join(names)))
for tup in cursor.fetchall():
for app in res.installed: