Make it possible to embed custom emojis in HTML

This commit is contained in:
taizan-hokuto
2020-07-12 23:24:43 +09:00
parent 971e4bdf39
commit 133a8afb27
3 changed files with 92 additions and 45 deletions

View File

@@ -83,11 +83,13 @@ class Extractor:
data = self._execute_extract_operations()
if self.processor is None:
return data
return self.processor.process(
ret = self.processor.process(
[{'video_id': None,
'timeout': 1,
'chatdata': (action["replayChatItemAction"]["actions"][0] for action in data)}]
)
self.processor.finalize()
return ret
def cancel(self):
asyncdl.cancel()