From eaac38c9197d616dfd19d0aee59e3ad531a65186 Mon Sep 17 00:00:00 2001 From: LuanRT Date: Sat, 28 Oct 2023 13:30:58 -0300 Subject: [PATCH] chore: lint --- src/core/clients/Music.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/clients/Music.ts b/src/core/clients/Music.ts index 75c05858..5bc20040 100644 --- a/src/core/clients/Music.ts +++ b/src/core/clients/Music.ts @@ -72,7 +72,7 @@ export default class Music { const player_response = this.#actions.execute(PlayerEndpoint.PATH, player_payload); const next_response = this.#actions.execute(NextEndpoint.PATH, next_payload); - const response = await Promise.all([player_response, next_response]); + const response = await Promise.all([ player_response, next_response ]); const cpn = generateRandomString(16); @@ -105,7 +105,7 @@ export default class Music { const cpn = generateRandomString(16); - const response = await Promise.all([player_response, next_response]); + const response = await Promise.all([ player_response, next_response ]); return new TrackInfo(response, this.#actions, cpn); }