[fix][flatpak] not displaying application updates on the search results

This commit is contained in:
Vinícius Moreira
2020-05-19 11:13:39 -03:00
parent 842f059924
commit 5cd26d1d82
2 changed files with 4 additions and 1 deletions

View File

@@ -26,6 +26,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- i18n - i18n
### Fixes ### Fixes
- Flatpak
- not displaying application updates on the search results
- initialization dialog hangs when there is no task to wait for [#112](https://github.com/vinifmor/bauh/issues/112) - initialization dialog hangs when there is no task to wait for [#112](https://github.com/vinifmor/bauh/issues/112)
- not caching data of repository packages with unknown repository names - not caching data of repository packages with unknown repository names

View File

@@ -90,7 +90,7 @@ class FlatpakManager(SoftwareManager):
if apps_found: if apps_found:
already_read = set() already_read = set()
installed_apps = self.read_installed(disk_loader=disk_loader).installed installed_apps = self.read_installed(disk_loader=disk_loader, internet_available=True).installed
if installed_apps: if installed_apps:
for app_found in apps_found: for app_found in apps_found: