From 1974c0394c15c10bc54aece894f6902814bd5091 Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Fri, 7 Apr 2023 10:44:39 -0400 Subject: [PATCH] Fallback if source is undefined --- src/api/status.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/status.ts b/src/api/status.ts index 624b1e7..fa8e003 100644 --- a/src/api/status.ts +++ b/src/api/status.ts @@ -102,7 +102,7 @@ const populateTweetProperties = async ( // Add Tweet source but remove the link HTML tag if (tweet.source) { - apiTweet.source = tweet.source + apiTweet.source = (tweet.source || '') .replace(/(.+?)<\/a>/, '$2') }