Skip to content

Commit bc098b5

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

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
@@ -53,7 +53,7 @@ private TDictionary ReadDictionary<TDictionary>(JToken element) where TDictionar
5353

5454
private IEnumerable<object> ReadArray(JArray element)
5555
{
56-
foreach (var item in (JArray)element)
56+
foreach (var item in element)
5757
{
5858
if (IsUnsupportedJTokenType(item.Type))
5959
continue;

0 commit comments

Comments
 (0)