this repo has no description

feeds: check record could be found before relying on it

+4 -2
+1 -1
feeds/popular.py
··· 32 32 if collection != 'app.bsky.feed.like': 33 33 return 34 34 35 - record = op['record'] 35 + record = op.get('record') 36 36 if record is None: 37 37 return 38 38
+3 -1
feeds/rapidfire.py
··· 34 34 if collection != 'app.bsky.feed.post': 35 35 return 36 36 37 - record = op['record'] 37 + record = op.get('record') 38 + if record is None: 39 + return 38 40 39 41 if all([ 40 42 len(record['text']) <= MAX_TEXT_LENGTH,