fix(connectionStatus): Remove redundant `changed` notifier from nim
There is no need to emit `changed` event for the QObject exposed from nim if only the underlying data changes.
This commit is contained in:
parent
517a10f805
commit
0d67d5138b
|
@ -68,12 +68,9 @@ QtObject:
|
|||
case website:
|
||||
of BLOCKCHAINS:
|
||||
self.blockchainNetworkConnection.updateValues(completelyDown, connectionState, chainIds, lastCheckedAt)
|
||||
self.blockchainNetworkConnectionChanged()
|
||||
of COLLECTIBLES:
|
||||
self.collectiblesNetworkConnection.updateValues(completelyDown, connectionState, chainIds, lastCheckedAt)
|
||||
self.collectiblesNetworkConnectionChanged()
|
||||
of MARKET:
|
||||
self.marketValuesNetworkConnection.updateValues(completelyDown, connectionState, chainIds, lastCheckedAt)
|
||||
self.marketValuesNetworkConnectionChanged()
|
||||
self.networkConnectionStatusUpdate(website, completelyDown, connectionState, chainIds, float(lastCheckedAt))
|
||||
|
||||
|
|
Loading…
Reference in New Issue