bug: url parser

fixes #564
This commit is contained in:
2023-05-17 20:37:25 +01:00
parent 167f1c5e65
commit cefc21709a
3 changed files with 11 additions and 2 deletions

View File

@ -166,7 +166,7 @@ export default function Text({ content, tags, creator, disableMedia, depth }: Te
if (t) {
return <ProxyImg src={t[2]} size={15} className="custom-emoji" />;
} else {
return i;
return `:${i}:`;
}
});
}