Skip to content

Commit

Permalink
Fixed GetExtensions method to return correct field (#2609)
Browse files Browse the repository at this point in the history
  • Loading branch information
hundreder committed Nov 18, 2020
1 parent bd695ef commit d913e45
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Expand Up @@ -301,7 +301,7 @@ private void InitializeProperties()

private IReadOnlyDictionary<string, object?> GetExtensions()
{
return _extensions ?? _readOnlyProperties;
return _extensions ?? _readOnlyExtensions;
}

private void InitializeExtensions()
Expand Down
Expand Up @@ -6,7 +6,9 @@
"QueryHash": null,
"OperationName": null,
"VariableValues": null,
"Extensions": null,
"Extensions": {
"three": "baz"
},
"ContextData": null,
"Services": null,
"InitialValue": null,
Expand Down

0 comments on commit d913e45

Please sign in to comment.