this repo has no description

firehose.py: only check header.op

Changed files
+1 -1
+1 -1
firehose.py
···
while True:
message = BytesIO(await firehose.recv())
header = dag_cbor.decode(message, allow_concat=True)
-
if header['op'] != 1 or header['t'] == '#info':
+
if header['op'] != 1:
continue
redis_cnx.publish('bsky-tools:firehose:stream', message.getvalue())