lint compliance

This commit is contained in:
ansuz
2020-02-05 10:47:43 -05:00
parent f94713ceca
commit 9c28941f6c
2 changed files with 1 additions and 3 deletions

View File

@@ -70,7 +70,7 @@ Core.expireSession = function (Sessions, safeKey) {
Core.expireSessionAsync = function (Env, safeKey, cb) {
setTimeout(function () {
Core.expireSession(Sessions, safeKey);
Core.expireSession(Env.Sessions, safeKey);
cb(void 0, 'OK');
});
};