We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f82465 commit 221a3fdCopy full SHA for 221a3fd
1 file changed
service/price.py
@@ -52,7 +52,7 @@ def fetchPrices(cls, prices):
52
item = eos.db.getItem(typeID)
53
# We're not going to request items only with market group, as eve-central
54
# doesn't provide any data for items not on the market
55
- if item.marketGroupID:
+ if item is not None and item.marketGroupID:
56
toRequest.add(typeID)
57
58
# Do not waste our time if all items are not on the market
0 commit comments