diff --git a/packages/app/src/Element/Text.tsx b/packages/app/src/Element/Text.tsx index 05c9997..eba63cc 100644 --- a/packages/app/src/Element/Text.tsx +++ b/packages/app/src/Element/Text.tsx @@ -35,7 +35,7 @@ export default function Text({ content, tags, creator }: TextProps) { .map(f => { if (typeof f === "string") { return splitByUrl(f).map(a => { - if (a.startsWith("http")) { + if (a.match(/^https?:\/\//)) { return ; } return a;