Skip to content

Commit

Permalink
Fixed to string method of FieldsetProperty
Browse files Browse the repository at this point in the history
  • Loading branch information
PhyberApex committed Sep 10, 2018
1 parent ed4de8e commit 79c9a86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Saule/Queries/Fieldset/FieldsetProperty.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public FieldsetProperty(string type, string[] fields)
/// <inheritdoc/>
public override string ToString()
{
return $"filter[{Type}]={string.Join(",", Fields)}";
return $"fields[{Type}]={string.Join(",", Fields)}";
}
}
}

0 comments on commit 79c9a86

Please sign in to comment.