🐛 Fix Sphere Rewind
This commit is contained in:
@@ -268,7 +268,7 @@ public class SphereRewindServiceGrpc(
|
||||
{
|
||||
ServiceId = "sphere",
|
||||
AccountId = request.AccountId,
|
||||
Data = GrpcTypeHelper.ConvertObjectToByteString(data),
|
||||
Data = GrpcTypeHelper.ConvertObjectToByteString(data, withoutIgnore: true),
|
||||
};
|
||||
}
|
||||
}
|
||||
@@ -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
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user