fix: AUR -> read installed and search

This commit is contained in:
Vinicius Moreira
2019-09-30 18:42:39 -03:00
parent 2be6d6ddf2
commit e1503328c8
2 changed files with 2 additions and 5 deletions

View File

@@ -9,7 +9,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Update notifications showing the number of updates by type as well
- AUR:
- Installed files available in the Info window
- Waiting for the the disk cache data loader only if needed
- Improving Arch distro checking
### Fixes

View File

@@ -67,8 +67,7 @@ class ArchManager(SoftwareManager):
Thread(target=self.mapper.fill_package_build, args=(app,)).start()
def search(self, words: str, disk_loader: DiskCacheLoader, limit: int = -1) -> SearchResult:
if self.comp_optimizer.isAlive():
self.comp_optimizer.join()
self.comp_optimizer.join()
downgrade_enabled = git.is_enabled()
res = SearchResult([], [], 0)
@@ -156,8 +155,7 @@ class ArchManager(SoftwareManager):
apps = []
if installed and installed['not_signed']:
if self.dcache_updater.isAlive():
self.dcache_updater.join()
self.dcache_updater.join()
self._fill_aur_pkgs(installed['not_signed'], apps, disk_loader, internet_available)