migration-fix

This commit is contained in:
tonyrewin 2022-11-12 16:18:39 +03:00
parent eae1228651
commit 93f6272c6a

View File

@ -347,7 +347,7 @@ def prepare_html_body(entry):
def extract_html(entry):
body_orig = entry.get("body") or ""
body_orig = entry.get("body").replace('\(', '(').replace('/)', ')') or ""
media = entry.get("media", [])
kind = entry.get("type") or ""
print("[extract] kind: " + kind)