tangled
alpha
login
or
join now
evbogue.com
/
wiredove
1
fork
atom
a demonstration replicated social networking web app built with anproto
wiredove.net/
social
ed25519
protocols
1
fork
atom
overview
issues
pulls
pipelines
make blobs on gossip just in case?
Everett Bogue
4 months ago
96b88ef1
93efa6a3
+4
-1
1 changed file
expand all
collapse all
unified
split
gossip.js
+4
-1
gossip.js
···
6
6
7
7
export const sendTry = (m) => {
8
8
if (chan) {
9
9
-
if (m.length === 44) { chan.sendHash(m)} else {
9
9
+
if (m.length === 44) {
10
10
+
chan.sendHash(m)}
11
11
+
else {
10
12
chan.sendBlob(m)
11
13
}
12
14
} else {
···
33
35
34
36
onBlob(async (blob, id) => {
35
37
console.log(`Received: ${blob}`)
38
38
+
await apds.make(blob)
36
39
await render.shouldWe(blob)
37
40
await apds.add(blob)
38
41
await render.blob(blob)