From cd6a8c69ffdfd69e989784ddbe7ff47f97262b89 Mon Sep 17 00:00:00 2001 From: aria Date: Thu, 2 May 2024 07:25:40 -0400 Subject: [PATCH] remove some unnecessary logging --- src/streamers/tidal/main.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/streamers/tidal/main.ts b/src/streamers/tidal/main.ts index e1a5d90..80d3081 100644 --- a/src/streamers/tidal/main.ts +++ b/src/streamers/tidal/main.ts @@ -58,8 +58,7 @@ export default class Tidal implements Streamer { if (!this.refreshToken) return if (await this.sessionValid()) return const success = await this.refresh() - if (success) console.log(`[tidal] Refreshed tokens successfully`) - else console.log(`[tidal] Failed to refresh tokens, this could be a bad sign`) + if (!success) console.log(`[tidal] Failed to refresh tokens, this could be a bad sign`) } getReady() }