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:
Alex Jbanca 2024-10-23 14:32:16 +03:00 committed by Alex Jbanca
parent 517a10f805
commit 0d67d5138b
1 changed files with 0 additions and 3 deletions

View File

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