enhancement: replacing wget by new download implementation

This commit is contained in:
Vinicius Moreira
2023-12-14 13:22:23 -03:00
parent 708bbc07a3
commit 5a01087f00
16 changed files with 149 additions and 87 deletions

View File

@@ -739,10 +739,6 @@ class AppImageManager(SoftwareManager, SettingsController):
if not self._is_sqlite3_available():
return False, self.i18n['missing_dep'].format(dep=bold('sqlite3'))
if not self.file_downloader.can_work():
download_clients = ', '.join(self.file_downloader.get_supported_clients())
return False, self.i18n['appimage.missing_downloader'].format(clients=download_clients)
return True, None
def requires_root(self, action: SoftwareAction, pkg: AppImage) -> bool: