Skip to content

Commit

Permalink
Deal filter bugfix (DavidRouyer#20)
Browse files Browse the repository at this point in the history
* Fix typo in DealFilters
  • Loading branch information
snappet-panksy authored and DavidRouyer committed Aug 22, 2019
1 parent 1b4b6e3 commit 1adabdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Pipedrive.net/Models/Request/DealFilters.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public IDictionary<string, string> Parameters
}
if (StageId.HasValue)
{
d.Add("stage_id", FilterId.Value.ToString());
d.Add("stage_id", StageId.Value.ToString());
}
if (Status.HasValue)
{
Expand Down

0 comments on commit 1adabdb

Please sign in to comment.