Skip to content

Commit

Permalink
removed "z" from dates in "yyyy-MM-dd" format
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthiasSort committed Apr 16, 2024
1 parent 8c5ba5a commit 6984284
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ODataWriter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ public static string GetTheDateTimeInZeroTimeZone(object dateTimeObject, bool is
}
else
{
return dateTimeInUtc.ToString("yyyy-MM-dd", CultureInfo.InvariantCulture) + "z";
return dateTimeInUtc.ToString("yyyy-MM-dd", CultureInfo.InvariantCulture);
}
}

Expand Down

0 comments on commit 6984284

Please sign in to comment.