Fallback if source is undefined

This commit is contained in:
dangered wolf 2023-04-07 10:44:39 -04:00
parent 52b00d2ef5
commit 1974c0394c
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -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 href="(.+?)" rel="nofollow">(.+?)<\/a>/, '$2')
}