diff --git a/CHANGELOG.md b/CHANGELOG.md index 9cfde647..8a4ad236 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,8 +25,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ### Fixes - Snap: - retrieving installed applications information for Ubuntu based distros -- Flatpak: - - update check for version 1.5.X ### AppImage support - Search, install, uninstall, downgrade, launch and retrieve the applications history @@ -34,6 +32,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Applications with no releases published to GitHub are not available - Adds desktop entries ( menu shortcuts ) for the installed applications ( **~/.local/share/applications **) +## [0.6.4] 2019-10-13 +### Fixes +- Flatpak update-checking for version 1.5.X + ## [0.6.3] 2019-10-11 ### Fixes - AUR update check for some scenarios diff --git a/bauh/gems/flatpak/worker.py b/bauh/gems/flatpak/worker.py index c9336c5f..dcb5e933 100644 --- a/bauh/gems/flatpak/worker.py +++ b/bauh/gems/flatpak/worker.py @@ -28,7 +28,7 @@ class FlatpakAsyncDataLoader(Thread): try: res = self.http_client.get('{}/apps/{}'.format(FLATHUB_API_URL, self.app.id)) - if res.status_code == 200 and res.text: + if res and res.text: data = res.json() if not self.app.version: