bug: fix a bug wth bosminer where it will sometimes not get data from graphql

This commit is contained in:
UpstreamData
2022-11-30 09:59:12 -07:00
parent e95659d2e0
commit 69e4f575c0

View File

@@ -548,6 +548,8 @@ class BOSMiner(BaseMiner):
if not query_data:
return None
query_data = query_data["data"]
if not query_data:
return None
data.mac = await self.get_mac()
data.model = await self.get_model()