this repo has no description

fix(sdw): text may not exist

Changed files
+1 -1
feeds
+1 -1
feeds/sevendirtywords.py
···
record.get('reply') is None,
record.get('embed') is None,
record.get('facets') is None,
-
SDW_REGEX.search(record['text']) is not None,
+
SDW_REGEX.search(record.get('text', '')) is not None,
]
if not all(conds):