mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 02:20:54 +01:00
Fallback if source is undefined
This commit is contained in:
parent
52b00d2ef5
commit
1974c0394c
1 changed files with 1 additions and 1 deletions
|
@ -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')
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue