fix(hifi): remove extra await
This commit is contained in:
parent
5504e004cc
commit
3a28ef54d1
1 changed files with 1 additions and 1 deletions
|
|
@ -249,7 +249,7 @@ class HiFiClient {
|
||||||
while (true) {
|
while (true) {
|
||||||
const unauthorized = res?.status === 401;
|
const unauthorized = res?.status === 401;
|
||||||
const previousResponse = res;
|
const previousResponse = res;
|
||||||
const token = await await this.#fetchAppToken({
|
const token = await this.#fetchAppToken({
|
||||||
clientId: this.#clientId,
|
clientId: this.#clientId,
|
||||||
clientSecret: this.#clientSecret,
|
clientSecret: this.#clientSecret,
|
||||||
signal,
|
signal,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue