From d3a4805f6df69e427574472d88c6f8b539c4bc3d Mon Sep 17 00:00:00 2001 From: Slendy Date: Wed, 15 Feb 2023 23:36:03 -0600 Subject: [PATCH] Fix mismatched timestamp fields --- ProjectLighthouse/Helpers/TimeHelper.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ProjectLighthouse/Helpers/TimeHelper.cs b/ProjectLighthouse/Helpers/TimeHelper.cs index 2acc9ad8..afd3dd8d 100644 --- a/ProjectLighthouse/Helpers/TimeHelper.cs +++ b/ProjectLighthouse/Helpers/TimeHelper.cs @@ -4,9 +4,9 @@ namespace LBPUnion.ProjectLighthouse.Helpers; public static class TimeHelper { - public static long Timestamp => DateTimeOffset.UtcNow.ToUnixTimeMilliseconds(); + public static long Timestamp => DateTimeOffset.UtcNow.ToUnixTimeSeconds(); - public static long TimestampMillis => DateTimeOffset.UtcNow.ToUnixTimeSeconds(); + public static long TimestampMillis => DateTimeOffset.UtcNow.ToUnixTimeMilliseconds(); } // 1397109686193