Skip to content

Commit

Permalink
fix: DealActivity - ToActivity()
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidRouyer committed Apr 18, 2019
1 parent eb88f3f commit 745f98e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Pipedrive.net/Models/Response/DealActivity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,8 @@ public Activity ToActivity()
DueTime = DueTime,
Duration = Duration,
UserId = UserId.Id,
DealId = DealId.Id,
PersonId = PersonId.Value,
DealId = DealId?.Id,
PersonId = PersonId?.Value,
Participants = Participants,
OrgId = OrgId.Value,
Note = Note
Expand Down

0 comments on commit 745f98e

Please sign in to comment.