#7896 - 24.36 Dev To Test #2884
|
@ -30,8 +30,11 @@ module.exports = Self => {
|
||||||
|
|
||||||
// Schedule to remove current token
|
// Schedule to remove current token
|
||||||
setTimeout(async() => {
|
setTimeout(async() => {
|
||||||
if (await models.AccessToken.findById(token.id))
|
try {
|
||||||
await Self.logout(token.id);
|
await Self.logout(token.id);
|
||||||
|
} catch (error) {
|
||||||
|
// FIXME: Crash if do throw new Error(error)
|
||||||
|
}
|
||||||
}, courtesyTime * 1000);
|
}, courtesyTime * 1000);
|
||||||
|
|
||||||
// Get scopes
|
// Get scopes
|
||||||
|
|
Loading…
Reference in New Issue