diff --git a/lib/api/getTitle.ts b/lib/api/getTitle.ts index 47a5d22..e654b30 100644 --- a/lib/api/getTitle.ts +++ b/lib/api/getTitle.ts @@ -4,6 +4,6 @@ export default async function getTitle(url: string) { // regular expression to find the tag let match = text.match(/<title.*>([^<]*)<\/title>/); - if (match) return match[1]; + if (match) return match[1] + " [AUTO GENERATED]"; else return ""; }