tangled
alpha
login
or
join now
mackuba.eu
/
bluesky-feeds-rb
Template of a custom feed generator service for the Bluesky network in Ruby
3
fork
atom
overview
issues
pulls
pipelines
catch invalid post errors cleanly
mackuba.eu
9 months ago
5ed0bdd6
6ae322d9
options
unified
split
Changed files
+5
app
firehose_stream.rb
+5
app/firehose_stream.rb
···
182
182
record: op.raw_record
183
183
)
184
184
185
185
+
if !post.valid?
186
186
+
log "Error: post is invalid: #{op.uri} (#{msg.seq}): #{post.errors.to_a.join(', ')}"
187
187
+
return
188
188
+
end
189
189
+
185
190
matched = false
186
191
187
192
@feeds.each do |feed|