A Ruby gem for streaming data from the Bluesky/ATProto firehose

save the section body as the record field

+1 -1
+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 - record = cid && @blocks.sections.detect { |s| s.cid == cid } 42 + record = cid && @blocks.sections.detect { |s| s.cid == cid }.body 43 43 44 44 Operation.new(@repo, path, action, cid, record) 45 45 }