Merge branch 'staging' into ng

# Conflicts:
#	CHANGELOG.md
#	bauh/__init__.py
This commit is contained in:
Vinicius Moreira
2019-10-13 18:49:04 -03:00
2 changed files with 5 additions and 3 deletions

View File

@@ -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: