We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9820df commit 908aeceCopy full SHA for 908aece
arduino-connection-manager.js
@@ -44,7 +44,7 @@ async function connect(connectionConfig) {
44
rawdata = await request(accessTokenUri, options);
45
data = JSON.parse(rawdata.body);
46
token = data.access_token;
47
- expires_in = data.expires_in;
+ expires_in = data.expires_in*1000;
48
if (token !== undefined) {
49
if (user === -1) {
50
const newIds = {
0 commit comments