decentralised sync engine
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

refactor: log out any handshake errors

serenity d4382f00 1035af06

+4 -1
+4 -1
src/lib/setup.ts
··· 111 111 did: shardDid, 112 112 channels: channelAtUris, 113 113 }); 114 - if (!handshakeResult.ok) continue; 114 + if (!handshakeResult.ok) { 115 + console.error(handshakeResult.error); 116 + continue; 117 + } 115 118 const sessionInfo = handshakeResult.data; 116 119 console.log("Handshake to", shardAtUri.rKey, "complete!"); 117 120 handshakeTokens.set(shardAtUri, sessionInfo);