Skip to content
This repository was archived by the owner on Jul 9, 2021. It is now read-only.

Commit

Permalink
Fixed current timestamp time to match local time
Browse files Browse the repository at this point in the history
  • Loading branch information
Zaczero committed Aug 3, 2020
1 parent f2306aa commit b39f7ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Kumo/Utilities.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public static class Utilities
{
public static int GetCurrentTimestamp()
{
var date = DateTime.UtcNow;
var date = DateTime.Now;

return GetTimestamp(
(short) date.Year,
Expand Down

0 comments on commit b39f7ca

Please sign in to comment.