1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-15 16:50:34 +03:00
This commit is contained in:
Jonathan Harris 2016-03-03 14:41:54 +00:00
parent e9e90dd512
commit d77f16ec16

View File

@ -47,7 +47,7 @@ class EDSM:
r.raise_for_status()
data = r.json()
if data == -1 or (isinstance(data, list) and len(data) == 0):
if data == -1 or not data:
# System not present - but don't create it on the assumption that the caller will
self.result['img'] = EDSM._IMG_NEW
self.result['uncharted'] = True
@ -82,7 +82,7 @@ class EDSM:
r.raise_for_status()
data = r.json()
if data == -1 or (isinstance(data, list) and len(data) == 0):
if data == -1 or not data:
# System not present - create it
result['img'] = EDSM._IMG_NEW
result['uncharted'] = True