mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-06 22:54:16 +02:00
[appimage] fix: displaying duplicate installed apps for some cases (search)
This commit is contained in:
@@ -227,7 +227,7 @@ class AppImageManager(SoftwareManager):
|
||||
installed_found.append(appim)
|
||||
found = True
|
||||
|
||||
if not found and lower_words in appim.name.lower() or (appim.description and lower_words in appim.description.lower()):
|
||||
if not found and (lower_words in appim.name.lower() or (appim.description and lower_words in appim.description.lower())):
|
||||
installed_found.append(appim)
|
||||
try:
|
||||
apps_conn.close()
|
||||
|
||||
Reference in New Issue
Block a user