aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/helpers/core-utils.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/helpers/core-utils.ts')
-rw-r--r--server/helpers/core-utils.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/helpers/core-utils.ts b/server/helpers/core-utils.ts
index f6d90bfca..305d3b71e 100644
--- a/server/helpers/core-utils.ts
+++ b/server/helpers/core-utils.ts
@@ -40,7 +40,7 @@ const timeTable = {
40 month: 3600000 * 24 * 30 40 month: 3600000 * 24 * 30
41} 41}
42 42
43export function parseDuration (duration: number | string): number { 43export function parseDurationToMs (duration: number | string): number {
44 if (typeof duration === 'number') return duration 44 if (typeof duration === 'number') return duration
45 45
46 if (typeof duration === 'string') { 46 if (typeof duration === 'string') {