We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a3503d commit 577f271Copy full SHA for 577f271
osu.NET/Helpers/OsuJsonSerializer.cs
@@ -14,6 +14,11 @@ internal static class OsuJsonSerializer
14
public static JsonSerializer Create()
15
=> JsonSerializer.Create(new()
16
{
17
+ //
18
+ // Unifies the parsing of timezones, causing those with a "+00:00" returned from the API to not be converted into the local timezones by NSJ
19
20
+ DateTimeZoneHandling = DateTimeZoneHandling.Utc,
21
+
22
Converters = [
23
new EnumConverter(),
24
0 commit comments