From eddf6c485367599abf01f06f86df7da7546670aa Mon Sep 17 00:00:00 2001 From: Markus Wolf Date: Mon, 30 Dec 2019 14:31:06 +0100 Subject: [PATCH] fix: remove invalid character --- lib/api/HueApiConfig.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/api/HueApiConfig.js b/lib/api/HueApiConfig.js index af1b823..feb5bbb 100644 --- a/lib/api/HueApiConfig.js +++ b/lib/api/HueApiConfig.js @@ -105,7 +105,7 @@ module.exports = class HueApiConfig { * Gets the expiry timestamp of the access token. * @returns {number} The timestamp for the expiry or -1 if not known */ - get accessTokenExpiry() {v + get accessTokenExpiry() { this._requireRemote(); return this._remoteApi.accessTokenExpiry; }