From 3939405cc65fe8ae70f16debd0a049a6ec148e88 Mon Sep 17 00:00:00 2001 From: Luan Date: Fri, 7 Jun 2024 14:26:27 -0300 Subject: [PATCH] chore(Player): Rephrase nsig failure message --- src/core/Player.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/Player.ts b/src/core/Player.ts index 80ff265c..fd9f9ec3 100644 --- a/src/core/Player.ts +++ b/src/core/Player.ts @@ -114,7 +114,7 @@ export default class Player { throw new PlayerError('Failed to decipher nsig'); if (nsig.startsWith('enhanced_except_')) { - Log.warn(TAG, 'Could not transform nsig, download may be throttled.\nChanging the InnerTube client to "ANDROID" might help!'); + Log.warn(TAG, 'Could not transform nsig, download may be throttled.'); } else if (this_response_nsig_cache) { this_response_nsig_cache.set(n, nsig); }