mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-12-15 12:24:57 +01:00
Update Journal File Handling
Now Correctly deserializes Journal events
This commit is contained in:
@@ -14,6 +14,6 @@ class PipConverter : JsonConverter<(int Sys, int Eng, int Wep)>
|
||||
|
||||
public override void Write(Utf8JsonWriter writer, (int Sys, int Eng, int Wep) value, JsonSerializerOptions options)
|
||||
{
|
||||
JsonSerializer.Serialize(writer, new[] { value.Sys, value.Eng, value.Wep });
|
||||
JsonSerializer.Serialize(writer, new {value.Sys, value.Eng, value.Wep}, options);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user