We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76818f9 commit b4304c6Copy full SHA for b4304c6
src/stores/file.ts
@@ -100,7 +100,7 @@ export class FileStore implements SessionStoreContract {
100
/**
101
* Check if the file has been expired and return null (if expired)
102
*/
103
- const sessionWillExpireAt = stats.mtimeMs + (string.seconds.parse(this.#age) * 1000)
+ const sessionWillExpireAt = stats.mtimeMs + string.seconds.parse(this.#age) * 1000
104
if (Date.now() > sessionWillExpireAt) {
105
debug('file store: expired session data %s', sessionId)
106
return null
tsconfig.json
@@ -2,6 +2,6 @@
2
"extends": "@adonisjs/tsconfig/tsconfig.package.json",
3
"compilerOptions": {
4
"rootDir": "./",
5
- "outDir": "./build",
6
- },
+ "outDir": "./build"
+ }
7
}
0 commit comments