decentralised sync engine
0
fork

Configure Feed

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

fix: encode uri component before comparing

serenity 36e3375f a62c03b7

+5 -1
+5 -1
src/lib/handlers/latticeHandshake.ts
··· 211 211 212 212 if (!storeAtUri.rKey) return; 213 213 214 - if (!existingShardConnectionShardDids.includes(storeAtUri.rKey)) { 214 + if ( 215 + !existingShardConnectionShardDids.includes( 216 + encodeURIComponent(storeAtUri.rKey), 217 + ) 218 + ) { 215 219 errors.push( 216 220 "Mismatch between claimant shard and channel storeAt. Request wants to validate for", 217 221 storeAtUri.rKey,