Skip to content
This repository was archived by the owner on Mar 11, 2022. It is now read-only.

Commit d5f0f2f

Browse files
author
Veronika Matyus
committed
Add semicolon
1 parent 88f24aa commit d5f0f2f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/tokens/TokenManager.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class TokenManager {
3232

3333
_autoRenew(defaultMaxAgeSecs) {
3434
debug('Auto renewing token now...');
35-
this._tokenExchangeEE = {}
35+
this._tokenExchangeEE = {};
3636
clearTimeout(this._renewTimeout);
3737
this._renew().then((response) => {
3838
let maxAgeSecs = cookie.parse(response.headers['set-cookie'][0])['Max-Age'] || defaultMaxAgeSecs;
@@ -54,7 +54,7 @@ class TokenManager {
5454
_renew() {
5555
if (!this._isTokenRenewing) {
5656
this._isTokenRenewing = true;
57-
this._tokenExchangeEE = new EventEmitter().setMaxListeners(Infinity)
57+
this._tokenExchangeEE = new EventEmitter().setMaxListeners(Infinity);
5858
debug('Starting token renewal.');
5959
this._getToken((error, response) => {
6060
if (error) {

0 commit comments

Comments
 (0)