tangled
alpha
login
or
join now
mackuba.eu
/
skyfall
6
fork
atom
A Ruby gem for streaming data from the Bluesky/ATProto firehose
6
fork
atom
overview
issues
pulls
pipelines
save the section body as the record field
mackuba.eu
2 years ago
11f6e6be
249ddf02
+1
-1
1 changed file
expand all
collapse all
unified
split
lib
skyfall
websocket_message.rb
+1
-1
lib/skyfall/websocket_message.rb
···
39
39
cid = op['cid'] && CID.from_cbor_tag(op['cid'])
40
40
path = op['path']
41
41
action = op['action']
42
42
-
record = cid && @blocks.sections.detect { |s| s.cid == cid }
42
42
+
record = cid && @blocks.sections.detect { |s| s.cid == cid }.body
43
43
44
44
Operation.new(@repo, path, action, cid, record)
45
45
}