fix(core.gbapp): #387 adding /setupSecurity multiple tokens. Refresh token fix. @othonlima.
This commit is contained in:
parent
b0163b6096
commit
ca7e24ee5a
1 changed files with 2 additions and 2 deletions
|
@ -606,12 +606,12 @@ export class GBVMService extends GBService {
|
||||||
const tokens = this.tokens ? this.tokens.split(',') : [];
|
const tokens = this.tokens ? this.tokens.split(',') : [];
|
||||||
|
|
||||||
for(i in tokens) {
|
for(i in tokens) {
|
||||||
const token = tokens[i];
|
const tokenName = tokens[i];
|
||||||
const expiresOn = new Date(global[i + "_expiresOn"]);
|
const expiresOn = new Date(global[i + "_expiresOn"]);
|
||||||
|
|
||||||
if (expiresOn.getTime() > new Date().getTime()) {
|
if (expiresOn.getTime() > new Date().getTime()) {
|
||||||
|
|
||||||
{token, expiresOn} = await sys.getCustomToken({pid, token});
|
const {token, expiresOn} = await sys.getCustomToken({pid, tokenName});
|
||||||
|
|
||||||
global[i] = token;
|
global[i] = token;
|
||||||
global[i + "_expiresOn"]= expiresOn;
|
global[i + "_expiresOn"]= expiresOn;
|
||||||
|
|
Loading…
Add table
Reference in a new issue