Skip to content

Commit 1edeae3

Browse files
authored
Update src/GraphQL.Client.Serializer.Newtonsoft/MapConverter.cs
1 parent 70305e3 commit 1edeae3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GraphQL.Client.Serializer.Newtonsoft/MapConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ private TDictionary ReadDictionary<TDictionary>(JToken element) where TDictionar
5151
return result;
5252
}
5353

54-
private IEnumerable<object> ReadArray(JToken element)
54+
private IEnumerable<object> ReadArray(JArray element)
5555
{
5656
foreach (var item in (JArray)element)
5757
{

0 commit comments

Comments
 (0)