fix: log rotation triggered when it shouldn't

Massimo Melina committed Mar 16, 2022 at 21:40 UTC 738b42c6f957dceab82c91b3007b36ccac34043a
1 file changed +1 -1
server/src/const.ts
+1 -1
@@ -10,7 +10,7 @@ export const BUILD_TIMESTAMP = ''
10 export const VERSION = ''
11 || DEV && String(_.attempt(() => JSON.parse(fs.readFileSync('package.json','utf8')).version)) // this should happen only in dev, build fills this value
12 export const SESSION_DURATION = 30*60_000
13 -export const DAY = 86_400_00
13 +export const DAY = 86_400_000
14
15 export const SPECIAL_URI = '/~/'
16 export const FRONTEND_URI = SPECIAL_URI + 'frontend/'