Index: channels/_generic.py ================================================================== --- channels/_generic.py +++ channels/_generic.py @@ -192,12 +192,12 @@ # check and modify entry; # assert that title and url are present modified = [] for row in new_streams: - if None in [row.get("title"), row.get("url")]: - next + if len(set(["", None]) & set([row.get("title"), row.get("url")])): + continue try: modified.append( self.postprocess(row) ) except Exception as e: __print__(e, dbg.ERR, row) new_streams = modified