Skip to content

Commit

Permalink
datetime fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
pshirshov committed Dec 19, 2024
1 parent fd9f96f commit 3576aeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/resources/baboon-runtime/cs/BaboonTime.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public RpDateTime(DateTime dateTime)

public override int GetHashCode()
{
return DateTime.GetHashCode();
return DateTime.ToUniversalTime().GetHashCode();
}

public override bool Equals(object? obj)
Expand Down

0 comments on commit 3576aeb

Please sign in to comment.