this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feeds/rapidfire.py: exclude posts without langs

+3
+3
feeds/rapidfire.py
··· 27 27 ts = commit['time'] 28 28 record = op['record'] 29 29 30 + if not record['langs']: 31 + return 32 + 30 33 if all([ 31 34 len(record['text']) <= MAX_TEXT_LENGTH, 32 35 all(0x20 <= ord(c) <= 0x7e for c in record['text']),