Fixed missing @

This commit is contained in:
dangered wolf 2022-07-14 17:50:12 -04:00
parent 320a4d0411
commit 86fd2cfe06
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -4,7 +4,7 @@ export const handleQuote = (quote: TweetPartial): string | null => {
console.log('quote tweet: ', quote);
let str = `\n`
str += `↘️ Quoting ${quote.user?.name} (${quote.user?.screen_name}) `
str += `↘️ Quoting ${quote.user?.name} (@${quote.user?.screen_name}) `
str += '═'.repeat(Math.max(60 - str.length, 0))