mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-07 00:04:15 +02:00
[appimage] fix: displaying duplicate installed apps for some cases (search)
This commit is contained in:
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
|
|||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||||
|
|
||||||
|
## [0.9.27]
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
- AppImage
|
||||||
|
- search: displaying duplicate installed apps for some cases
|
||||||
|
|
||||||
## [0.9.26] 2022-01-31
|
## [0.9.26] 2022-01-31
|
||||||
|
|
||||||
### Improvements
|
### Improvements
|
||||||
|
|||||||
@@ -227,7 +227,7 @@ class AppImageManager(SoftwareManager):
|
|||||||
installed_found.append(appim)
|
installed_found.append(appim)
|
||||||
found = True
|
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)
|
installed_found.append(appim)
|
||||||
try:
|
try:
|
||||||
apps_conn.close()
|
apps_conn.close()
|
||||||
|
|||||||
Reference in New Issue
Block a user