Fixed token type issues

This commit is contained in:
Alex Mikhalev 2018-08-11 20:02:16 +03:00
parent 8a6d501cda
commit 6b1b650f78

View File

@ -1,4 +1,4 @@
import TokenClaims from "@common/TokenClaims";
import { TokenClaims } from "@common/TokenClaims";
import * as jwt from "jsonwebtoken";
import { computed, createAtom, IAtom, observable } from "mobx";
@ -38,7 +38,7 @@ export class Token {
if (!this.isExpiredAtom.reportObserved()) {
this.updateCurrentTime(false);
}
if (this.claims == null) {
if (this.claims == null || this.claims.exp == null) {
return Number.NEGATIVE_INFINITY;
}
return this.claims.exp - this.currentTime;