mirror of
https://git.sr.ht/~tsileo/microblog.pub
synced 2024-12-22 13:14:28 +00:00
Fix UI for None attributes
This commit is contained in:
parent
8de28e287a
commit
1d01df55c8
1 changed files with 3 additions and 0 deletions
|
@ -273,6 +273,9 @@ def _update_inline_imgs(content):
|
||||||
|
|
||||||
|
|
||||||
def _clean_html(html: str, note: Object) -> str:
|
def _clean_html(html: str, note: Object) -> str:
|
||||||
|
if html is None:
|
||||||
|
logger.error(f"{html=} for {note.ap_id}/{note.ap_object}")
|
||||||
|
return ""
|
||||||
try:
|
try:
|
||||||
return _emojify(
|
return _emojify(
|
||||||
_replace_custom_emojis(
|
_replace_custom_emojis(
|
||||||
|
|
Loading…
Reference in a new issue