Skip to content

Commit ecce02b

Browse files
committed
fix: remove unnecessary UTC specification in date parsing logic
1 parent 298b584 commit ecce02b

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/Weaviate.Client/Serialization/Converters/DatePropertyConverter.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ out parsed
7575
{
7676
// Fall back to current culture parsing and mark as UTC
7777
parsed = DateTime.Parse(dateString, CultureInfo.InvariantCulture);
78-
parsed = DateTime.SpecifyKind(parsed, DateTimeKind.Utc);
7978
}
8079

8180
// Ensure the result is UTC

0 commit comments

Comments
 (0)