Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
SuspiciousLookingOwl committed Nov 16, 2024
1 parent 2c39a8d commit 7261aa6
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/common/shared/HTTP/HTTP.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ export class HTTP {
expiresAt: null,
...options.oauth,
};
(this.pot = options.pot), (this.authorizationPromise = null);
this.pot = options.pot;
this.authorizationPromise = null;
this.defaultFetchOptions = options.fetchOptions || {};
this.defaultClientOptions = options.youtubeClientOptions || {};
}
Expand Down Expand Up @@ -107,9 +108,7 @@ export class HTTP {
},
},
serviceIntegrityDimensions: this.pot
? {
poToken: this.pot.token,
}
? { poToken: this.pot.token, }
: undefined,
...options?.data,
},
Expand Down

0 comments on commit 7261aa6

Please sign in to comment.