Fix tag dedup
parent
0144a1c0d4
commit
2853bf2a28
|
@ -183,7 +183,7 @@ async def markdownify(
|
||||||
# Handle custom emoji
|
# Handle custom emoji
|
||||||
tags.extend(emoji.tags(content))
|
tags.extend(emoji.tags(content))
|
||||||
|
|
||||||
return rendered_content, tags, list(mentioned_actors.values())
|
return rendered_content, dedup_tags(tags), list(mentioned_actors.values())
|
||||||
|
|
||||||
|
|
||||||
def dedup_tags(tags: list[dict[str, str]]) -> list[dict[str, str]]:
|
def dedup_tags(tags: list[dict[str, str]]) -> list[dict[str, str]]:
|
||||||
|
|
Loading…
Reference in New Issue