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 52baf7e commit 6e04514Copy full SHA for 6e04514
web/src/hooks/useProjectStatusInfos.ts
@@ -42,17 +42,19 @@ const getNewInfos = async (
42
43
// time to check network info
44
let hasPeers = false
45
+ let isGossiping = false
46
const networkInfo = networkInfos[index]
47
if (networkInfo) {
48
// 1 means 'only me'
49
// 2 or more means currently active peers
50
hasPeers = networkInfo.current_number_of_peers > 1
51
+ isGossiping = networkInfo.fetch_pool_info.num_ops_to_fetch > 0
52
}
53
newInfos[cellId] = {
54
passphrase: uidToPassphrase(networkSeed),
55
appId,
56
hasPeers,
- isGossiping: true,
57
+ isGossiping,
58
hasProjectMeta,
59
60
})
0 commit comments