🐛 Fix Sphere Rewind

This commit is contained in:
2025-12-27 20:49:33 +08:00
parent 07445ebc25
commit 2bffbf18a3
5 changed files with 10 additions and 10 deletions

View File

@@ -31,11 +31,11 @@ public abstract class EmbeddableBase
{
var jsonRaw = JsonSerializer.Serialize(
input,
GrpcTypeHelper.SerializerOptionsWithIgnore
GrpcTypeHelper.SerializerOptionsWithoutIgnore
);
return JsonSerializer.Deserialize<Dictionary<string, object>>(
jsonRaw,
GrpcTypeHelper.SerializerOptionsWithIgnore
GrpcTypeHelper.SerializerOptionsWithoutIgnore
);
}
}