diff --git a/src/quote.ts b/src/quote.ts index 7bb57ef..a0ec98d 100644 --- a/src/quote.ts +++ b/src/quote.ts @@ -4,9 +4,9 @@ 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)); + // str += '═'.repeat(Math.max(60 - str.length, 0)); str += ` \n\n`; str += linkFixer(quote, quote.full_text);