Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/StreamJsonRpc/SystemTextJsonFormatter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -852,7 +852,7 @@ public override IAsyncEnumerable<T> Read(ref Utf8JsonReader reader, Type typeToC
if (wrapper.RootElement.TryGetProperty(MessageFormatterEnumerableTracker.TokenPropertyName, out JsonElement enumToken))
{
// Copy the token so we can retain it and replay it later.
handle = enumToken.Deserialize<JsonElement>();
handle = enumToken.Clone();
}

IReadOnlyList<T>? prefetchedItems = null;
Expand Down