Broke meta

This commit is contained in:
barelyprofessional
2026-02-19 19:30:05 -06:00
parent cda5aca788
commit 60f74894ca

View File

@@ -349,7 +349,7 @@ public static class Money
string? metaJson = null; string? metaJson = null;
if (gameMeta != null) if (gameMeta != null)
{ {
metaJson = JsonSerializer.Serialize(gameMeta, Formatting.Indented); metaJson = JsonSerializer.Serialize(gameMeta, new JsonSerializerOptions { WriteIndented = true });
_logger.Debug("Serialized metadata follows"); _logger.Debug("Serialized metadata follows");
_logger.Debug(metaJson); _logger.Debug(metaJson);
} }