From c95a8a30531f47718126634229f889654641fd83 Mon Sep 17 00:00:00 2001 From: Ragnar Lothbrok <30740511+RagnarLothbrok-Odin@users.noreply.github.com> Date: Sun, 24 Dec 2023 15:50:13 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix(index.ts):=20fix=20color=20o?= =?UTF-8?q?f=20the=20'seconds...'=20text=20in=20the=20disconnected=20state?= =?UTF-8?q?=20message=20to=20match=20the=20rest=20of=20the=20message?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index bf8243f..7a27a64 100644 --- a/src/index.ts +++ b/src/index.ts @@ -428,7 +428,7 @@ async function generateProgressBar() { case ConnectionState.Disconnected: // @ts-expect-error [issue with the package not defining 'bright' colors within its type definitions] - return `⚠️ ${'Discord connection lost. Retrying in'.brightRed} ${countdownTimer.toString().brightBlue} ${'seconds... '.red}`.bold.toString(); + return `⚠️ ${'Discord connection lost. Retrying in'.brightRed} ${countdownTimer.toString().brightBlue} ${'seconds... '.brightRed}`.bold.toString(); default: return `📅 ${formatDate().green.italic} ${'|'.magenta} ${'Trakt:'.red} ${'Not playing.'}`.bold.toString();