Calculate expiry date should not be async.
This commit is contained in:
parent
fc289262a8
commit
b092722488
@ -124,7 +124,7 @@ async function fullMicrosoftAuthFlow(entryCode, authMode) {
|
|||||||
* @param {number} epiresInS Expires in (seconds)
|
* @param {number} epiresInS Expires in (seconds)
|
||||||
* @returns
|
* @returns
|
||||||
*/
|
*/
|
||||||
async function calculateExpiryDate(nowMs, epiresInS) {
|
function calculateExpiryDate(nowMs, epiresInS) {
|
||||||
return nowMs + ((epiresInS-10)*1000)
|
return nowMs + ((epiresInS-10)*1000)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user